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

Chris Lattner lattner at cs.uiuc.edu
Sun Mar 5 15:59:32 PST 2006



Changes in directory llvm/lib/CodeGen/SelectionDAG:

ScheduleDAGList.cpp updated: 1.14 -> 1.15
---
Log message:

Comment fixes


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

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


Index: llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp:1.14 llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp:1.15
--- llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp:1.14	Sun Mar  5 17:51:47 2006
+++ llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp	Sun Mar  5 17:59:20 2006
@@ -214,7 +214,7 @@
 private:
   // SDNode to SUnit mapping (many to one).
   std::map<SDNode*, SUnit*> SUnitMap;
-  // The schedule.  Null SUnit*'s represend noop instructions.
+  // The schedule.  Null SUnit*'s represent noop instructions.
   std::vector<SUnit*> Sequence;
   // Current scheduling cycle.
   unsigned CurrCycle;
@@ -523,7 +523,7 @@
       // processors without pipeline interlocks and other cases.
       DEBUG(std::cerr << "*** Emitting noop");
       HazardRec->EmitNoop();
-      Sequence.push_back(0);   // NULL SUnit -> noop
+      Sequence.push_back(0);   // NULL SUnit* -> noop
       ++NumNoops;
     }
   }






More information about the llvm-commits mailing list