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



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to