commit | 0e8bf4e5aa7dc53bbeaf073639bcda239feab901 | [log] [tgz] |
---|---|---|
author | Clement Courbet <courbet@google.com> | Mon Jun 25 13:44:27 2018 +0000 |
committer | Clement Courbet <courbet@google.com> | Mon Jun 25 13:44:27 2018 +0000 |
tree | 6ad502e0294cb33ffca2863d94ea83ecdaa6e612 | |
parent | 0ac29350b5c081fa0dd469ca618a5857d659f3b0 [diff] [blame] |
[llvm-exegesis][NFC] Remove unnecessary member variables. llvm-svn: 335470
diff --git a/llvm/unittests/tools/llvm-exegesis/X86/SnippetGeneratorTest.cpp b/llvm/unittests/tools/llvm-exegesis/X86/SnippetGeneratorTest.cpp index f8a7ccd..77de5e7 100644 --- a/llvm/unittests/tools/llvm-exegesis/X86/SnippetGeneratorTest.cpp +++ b/llvm/unittests/tools/llvm-exegesis/X86/SnippetGeneratorTest.cpp
@@ -220,7 +220,7 @@ using BenchmarkRunner::BenchmarkRunner; Instruction createInstruction(unsigned Opcode) { - return Instruction(MCInstrInfo.get(Opcode), RATC); + return Instruction(State.getInstrInfo().get(Opcode), RATC); } private: