[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp ScheduleDAGRRList.cpp

David Greene greened at obbligato.org
Thu Jun 28 20:42:56 PDT 2007



Changes in directory llvm/lib/CodeGen/SelectionDAG:

SelectionDAGISel.cpp updated: 1.473 -> 1.474
ScheduleDAGRRList.cpp updated: 1.32 -> 1.33
---
Log message:

Remove unnecessary attributions in comments.


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

 ScheduleDAGRRList.cpp |    2 +-
 SelectionDAGISel.cpp  |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.473 llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.474
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.473	Thu Jun 28 21:49:11 2007
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp	Thu Jun 28 22:42:22 2007
@@ -1700,8 +1700,8 @@
 
   // Merge case into clusters
   if (Cases.size()>=2)
-    // Cray [dag]: Must recompute end() each iteration because it may
-    // be invalidated by erase if we hold on to it
+    // Must recompute end() each iteration because it may be
+    // invalidated by erase if we hold on to it
     for (CaseItr I=Cases.begin(), J=++(Cases.begin()); J!=Cases.end(); ) {
       int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
       int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();


Index: llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp:1.32 llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp:1.33
--- llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp:1.32	Thu Jun 28 21:48:09 2007
+++ llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp	Thu Jun 28 22:42:23 2007
@@ -618,7 +618,7 @@
   bool LIsTarget = left->Node->isTargetOpcode();
   bool RIsTarget = right->Node->isTargetOpcode();
 
-  // Cray: There used to be a special tie breaker here that looked for
+  // There used to be a special tie breaker here that looked for
   // two-address instructions and preferred the instruction with a
   // def&use operand.  The special case triggered diagnostics when
   // _GLIBCXX_DEBUG was enabled because it broke the strict weak






More information about the llvm-commits mailing list