[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp ScheduleDAGList.cpp

Andrew Lenharth alenhar2 at cs.uiuc.edu
Thu Jul 20 10:28:51 PDT 2006



Changes in directory llvm/lib/CodeGen/SelectionDAG:

DAGCombiner.cpp updated: 1.174 -> 1.175
ScheduleDAGList.cpp updated: 1.61 -> 1.62
---
Log message:

Reduce number of exported symbols

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

 DAGCombiner.cpp     |    2 +-
 ScheduleDAGList.cpp |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp:1.174 llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp:1.175
--- llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp:1.174	Wed Jun 28 16:58:30 2006
+++ llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp	Thu Jul 20 12:28:38 2006
@@ -42,7 +42,7 @@
 using namespace llvm;
 
 namespace {
-  Statistic<> NodesCombined ("dagcombiner", "Number of dag nodes combined");
+  static Statistic<> NodesCombined ("dagcombiner", "Number of dag nodes combined");
 
   class VISIBILITY_HIDDEN DAGCombiner {
     SelectionDAG &DAG;


Index: llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp:1.61 llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp:1.62
--- llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp:1.61	Wed Jun 28 17:17:39 2006
+++ llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp	Thu Jul 20 12:28:38 2006
@@ -34,8 +34,8 @@
 using namespace llvm;
 
 namespace {
-  Statistic<> NumNoops ("scheduler", "Number of noops inserted");
-  Statistic<> NumStalls("scheduler", "Number of pipeline stalls");
+  static Statistic<> NumNoops ("scheduler", "Number of noops inserted");
+  static Statistic<> NumStalls("scheduler", "Number of pipeline stalls");
 }
 
 namespace {






More information about the llvm-commits mailing list