More minor cleanups of the interface

llvm-svn: 7446
This commit is contained in:
Chris Lattner 2003-07-31 04:43:49 +00:00
parent c5b306b4b9
commit c69df616b8
2 changed files with 11 additions and 3 deletions

View File

@ -1,6 +1,12 @@
#include "Support/Statistic.h" //===- CodeEmitterGen.cpp - Code Emitter Generator ------------------------===//
#include "Record.h" //
// FIXME: Document.
//
//===----------------------------------------------------------------------===//
#include "CodeEmitterGen.h" #include "CodeEmitterGen.h"
#include "Record.h"
#include "Support/Statistic.h"
bool CodeEmitterGen::run(std::ostream &o) { bool CodeEmitterGen::run(std::ostream &o) {
std::vector<Record*> Insts; std::vector<Record*> Insts;

View File

@ -7,7 +7,9 @@
#ifndef CODEMITTERGEN_H #ifndef CODEMITTERGEN_H
#define CODEMITTERGEN_H #define CODEMITTERGEN_H
#include "Record.h" #include <string>
#include <iosfwd>
class RecordKeeper;
class CodeEmitterGen { class CodeEmitterGen {
RecordKeeper &Records; RecordKeeper &Records;