[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp

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



Changes in directory llvm/lib/Transforms/Instrumentation:

RSProfiling.cpp updated: 1.10 -> 1.11
---
Log message:

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



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

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


Index: llvm/lib/Transforms/Instrumentation/RSProfiling.cpp
diff -u llvm/lib/Transforms/Instrumentation/RSProfiling.cpp:1.10 llvm/lib/Transforms/Instrumentation/RSProfiling.cpp:1.11
--- llvm/lib/Transforms/Instrumentation/RSProfiling.cpp:1.10	Sun Nov 26 03:17:06 2006
+++ llvm/lib/Transforms/Instrumentation/RSProfiling.cpp	Wed Dec  6 11:46:32 2006
@@ -52,7 +52,7 @@
 using namespace llvm;
 
 namespace {
-  Statistic<> NumBackEdges("bedge", "Number of BackEdges");
+  Statistic NumBackEdges("bedge", "Number of BackEdges");
 
   enum RandomMeth {
     GBV, GBVO, HOSTCC






More information about the llvm-commits mailing list