[llvm-commits] CVS: llvm/lib/Target/ARM/ARMAsmPrinter.cpp

Chris Lattner sabre at nondot.org
Wed Dec 6 09:47:30 PST 2006



Changes in directory llvm/lib/Target/ARM:

ARMAsmPrinter.cpp updated: 1.32 -> 1.33
---
Log message:

Detemplatize the Statistic class.  The only type it is instantiated with
is 'unsigned'.



---
Diffs of the changes:  (+1 -1)

 ARMAsmPrinter.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/ARM/ARMAsmPrinter.cpp
diff -u llvm/lib/Target/ARM/ARMAsmPrinter.cpp:1.32 llvm/lib/Target/ARM/ARMAsmPrinter.cpp:1.33
--- llvm/lib/Target/ARM/ARMAsmPrinter.cpp:1.32	Wed Dec  6 07:35:10 2006
+++ llvm/lib/Target/ARM/ARMAsmPrinter.cpp	Wed Dec  6 11:46:32 2006
@@ -35,7 +35,7 @@
 using namespace llvm;
 
 namespace {
-  Statistic<> EmittedInsts("asm-printer", "Number of machine instrs printed");
+  Statistic EmittedInsts("asm-printer", "Number of machine instrs printed");
 
   static const char *ARMCondCodeToString(ARMCC::CondCodes CC) {
     switch (CC) {






More information about the llvm-commits mailing list