From d422d3a755d25b44e66a37e487d99ca5065275a3 Mon Sep 17 00:00:00 2001 From: Clement Courbet Date: Wed, 9 Oct 2019 11:29:21 +0000 Subject: [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 --- llvm/unittests/tools/llvm-exegesis/PowerPC/AnalysisTest.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'llvm/unittests/tools/llvm-exegesis/PowerPC/AnalysisTest.cpp') diff --git a/llvm/unittests/tools/llvm-exegesis/PowerPC/AnalysisTest.cpp b/llvm/unittests/tools/llvm-exegesis/PowerPC/AnalysisTest.cpp index a7d2c6d95e6..cce37d1c031 100644 --- a/llvm/unittests/tools/llvm-exegesis/PowerPC/AnalysisTest.cpp +++ b/llvm/unittests/tools/llvm-exegesis/PowerPC/AnalysisTest.cpp @@ -28,10 +28,9 @@ protected: AnalysisTest() { const std::string TT = "powerpc64le-unknown-linux"; std::string error; - const llvm::Target *const TheTarget = - llvm::TargetRegistry::lookupTarget(TT, error); + const Target *const TheTarget = TargetRegistry::lookupTarget(TT, error); if (!TheTarget) { - llvm::errs() << error << "\n"; + errs() << error << "\n"; return; } STI.reset(TheTarget->createMCSubtargetInfo(TT, "pwr9", "")); @@ -63,7 +62,7 @@ protected: } protected: - std::unique_ptr STI; + std::unique_ptr STI; uint16_t ALUIdx = 0; uint16_t ALUEIdx = 0; uint16_t ALUOIdx = 0; -- cgit v1.2.3