diff options
Diffstat (limited to 'llvm/utils')
-rw-r--r-- | llvm/utils/TableGen/FastISelEmitter.cpp | 2 | ||||
-rw-r--r-- | llvm/utils/TableGen/FastISelEmitter.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/llvm/utils/TableGen/FastISelEmitter.cpp b/llvm/utils/TableGen/FastISelEmitter.cpp index 2bb351b7085..0253484b6f0 100644 --- a/llvm/utils/TableGen/FastISelEmitter.cpp +++ b/llvm/utils/TableGen/FastISelEmitter.cpp @@ -867,6 +867,6 @@ void FastISelEmitter::run(raw_ostream &OS) { } FastISelEmitter::FastISelEmitter(RecordKeeper &R) - : Records(R), CGP(R) { + : CGP(R) { } diff --git a/llvm/utils/TableGen/FastISelEmitter.h b/llvm/utils/TableGen/FastISelEmitter.h index 4f75ac1fd9d..9e042db16f9 100644 --- a/llvm/utils/TableGen/FastISelEmitter.h +++ b/llvm/utils/TableGen/FastISelEmitter.h @@ -25,7 +25,6 @@ class CodeGenTarget; /// and emission of the instruction selector. /// class FastISelEmitter : public TableGenBackend { - RecordKeeper &Records; CodeGenDAGPatterns CGP; public: explicit FastISelEmitter(RecordKeeper &R); |