Begin making more use of the FastISelEmitter class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55093 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/TableGen/FastISelEmitter.h b/utils/TableGen/FastISelEmitter.h
index df6a0e6..da8aa16 100644
--- a/utils/TableGen/FastISelEmitter.h
+++ b/utils/TableGen/FastISelEmitter.h
@@ -19,14 +19,18 @@
namespace llvm {
+class CodeGenTarget;
+
/// FastISelEmitter - The top-level class which coordinates construction
/// and emission of the instruction selector.
///
class FastISelEmitter : public TableGenBackend {
RecordKeeper &Records;
CodeGenDAGPatterns CGP;
+ const CodeGenTarget &Target;
+ const std::string InstNS;
public:
- explicit FastISelEmitter(RecordKeeper &R) : Records(R), CGP(R) {}
+ explicit FastISelEmitter(RecordKeeper &R);
// run - Output the isel, returning true on failure.
void run(std::ostream &OS);