summaryrefslogtreecommitdiff
path: root/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp
diff options
context:
space:
mode:
authorAyman Musa <ayman.musa@intel.com>2017-03-07 08:56:27 +0000
committerAyman Musa <ayman.musa@intel.com>2017-03-07 08:56:27 +0000
commit69112bd6d297c71dfa60f0e3156db54acf0bafc1 (patch)
tree243202ed6f15ffbe1b65cf989369f3bf481d7507 /utils/TableGen/X86EVEX2VEXTablesEmitter.cpp
parentb59d8041db7c8e15a28d8b9393429b384499f603 (diff)
[X86] Quick fix for build bot failure (r297127) due to unused variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297130 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/X86EVEX2VEXTablesEmitter.cpp')
-rw-r--r--utils/TableGen/X86EVEX2VEXTablesEmitter.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp b/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp
index 2a2a311a81a..0bce0e4bb77 100644
--- a/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp
+++ b/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp
@@ -22,7 +22,6 @@ using namespace llvm;
namespace {
class X86EVEX2VEXTablesEmitter {
- RecordKeeper &Records;
CodeGenTarget Target;
// Hold all non-masked & non-broadcasted EVEX encoded instructions
@@ -50,7 +49,7 @@ class X86EVEX2VEXTablesEmitter {
};
public:
- X86EVEX2VEXTablesEmitter(RecordKeeper &R) : Records(R), Target(R) {}
+ X86EVEX2VEXTablesEmitter(RecordKeeper &R) : Target(R) {}
// run - Output X86 EVEX2VEX tables.
void run(raw_ostream &OS);