diff options
author | Clement Courbet <courbet@google.com> | 2019-10-09 11:29:21 +0000 |
---|---|---|
committer | Clement Courbet <courbet@google.com> | 2019-10-09 11:29:21 +0000 |
commit | d422d3a755d25b44e66a37e487d99ca5065275a3 (patch) | |
tree | 900fc74a5fed8ea9c478bbbc7208d9939fe48601 /llvm/unittests/tools/llvm-exegesis/X86/AssemblerTest.cpp | |
parent | 60db8b7946b559517acb5232e345ebff1357cc08 (diff) | |
download | bcm5719-llvm-d422d3a755d25b44e66a37e487d99ca5065275a3.tar.gz bcm5719-llvm-d422d3a755d25b44e66a37e487d99ca5065275a3.zip |
[llvm-exegesis][NFC] Remove extra `llvm::` qualifications.
Summary: First patch: in unit tests.
Subscribers: nemanjai, tschuett, MaskRay, jsji, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D68687
llvm-svn: 374157
Diffstat (limited to 'llvm/unittests/tools/llvm-exegesis/X86/AssemblerTest.cpp')
-rw-r--r-- | llvm/unittests/tools/llvm-exegesis/X86/AssemblerTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/unittests/tools/llvm-exegesis/X86/AssemblerTest.cpp b/llvm/unittests/tools/llvm-exegesis/X86/AssemblerTest.cpp index 54a33a1e155..a2c30e9f5c6 100644 --- a/llvm/unittests/tools/llvm-exegesis/X86/AssemblerTest.cpp +++ b/llvm/unittests/tools/llvm-exegesis/X86/AssemblerTest.cpp @@ -38,11 +38,11 @@ protected: }; TEST_F(X86MachineFunctionGeneratorTest, DISABLED_JitFunction) { - Check({}, llvm::MCInst(), 0xc3); + Check({}, MCInst(), 0xc3); } TEST_F(X86MachineFunctionGeneratorTest, DISABLED_JitFunctionXOR32rr_X86) { - Check({{EAX, llvm::APInt(32, 1)}}, + Check({{EAX, APInt(32, 1)}}, MCInstBuilder(XOR32rr).addReg(EAX).addReg(EAX).addReg(EAX), // mov eax, 1 0xb8, 0x01, 0x00, 0x00, 0x00, |