aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2005-07-01 23:56:38 +0000
committerNate Begeman <natebegeman@mac.com>2005-07-01 23:56:38 +0000
commit4eb74ba602be3f5c43d9e228c87ed8fe4c7ffe1c (patch)
treeabab6b50b0727535a8bad890007538bc003f45ab
parentc1671e2d7ddd81f0ac59652cc889ba2a40278ebf (diff)
The statistic needs to be in the correct namespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22327 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/X86/X86AsmPrinter.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/X86/X86AsmPrinter.cpp b/lib/Target/X86/X86AsmPrinter.cpp
index a5b82b5a77..332dda0dae 100644
--- a/lib/Target/X86/X86AsmPrinter.cpp
+++ b/lib/Target/X86/X86AsmPrinter.cpp
@@ -25,7 +25,8 @@
using namespace llvm;
using namespace x86;
-Statistic<> EmittedInsts("asm-printer", "Number of machine instrs printed");
+Statistic<> llvm::x86::EmittedInsts("asm-printer",
+ "Number of machine instrs printed");
enum AsmWriterFlavorTy { att, intel };
cl::opt<AsmWriterFlavorTy>