[X86] Quick fix for build bot failure (r297127) due to unused variable.
authorAyman Musa <ayman.musa@intel.com>
Tue, 7 Mar 2017 08:56:27 +0000 (08:56 +0000)
committerAyman Musa <ayman.musa@intel.com>
Tue, 7 Mar 2017 08:56:27 +0000 (08:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297130 91177308-0d34-0410-b5e6-96231b3b80d8

cmake/modules/AddLLVM.cmake
utils/TableGen/X86EVEX2VEXTablesEmitter.cpp

index 41375c61b9cd7e58173af69bb0c7757f24d02854..7f7608cff33d3e0c683272656fc4bd9d5fa6592f 100644 (file)
@@ -1213,8 +1213,7 @@ function(add_lit_testsuites project directory)
       endif()
       string(FIND ${lit_suite} Inputs is_inputs)
       string(FIND ${lit_suite} Output is_output)
-      string(FIND ${lit_suite} .svn is_svn)
-      if (NOT (is_inputs EQUAL -1 AND is_output EQUAL -1 AND is_svn EQUAL -1))
+      if (NOT (is_inputs EQUAL -1 AND is_output EQUAL -1))
         continue()
       endif()
 
index 2a2a311a81a893b5ea937e9c66d6f909ca7b698c..0bce0e4bb774fb1c20a9c07283a50dbb2e317082 100644 (file)
@@ -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);