git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297130
91177308-0d34-0410-b5e6-
96231b3b80d8
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()
namespace {
class X86EVEX2VEXTablesEmitter {
- RecordKeeper &Records;
CodeGenTarget Target;
// Hold all non-masked & non-broadcasted EVEX encoded instructions
};
public:
- X86EVEX2VEXTablesEmitter(RecordKeeper &R) : Records(R), Target(R) {}
+ X86EVEX2VEXTablesEmitter(RecordKeeper &R) : Target(R) {}
// run - Output X86 EVEX2VEX tables.
void run(raw_ostream &OS);