[llvm-commits] [llvm] r49502 - /llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h

Dan Gohman gohman at apple.com
Thu Apr 10 15:27:06 PDT 2008


Author: djg
Date: Thu Apr 10 17:27:06 2008
New Revision: 49502

URL: http://llvm.org/viewvc/llvm-project?rev=49502&view=rev
Log:
Fix a typo in a comment.

Modified:
    llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h

Modified: llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h?rev=49502&r1=49501&r2=49502&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h (original)
+++ llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h Thu Apr 10 17:27:06 2008
@@ -256,7 +256,7 @@
     DenseMap<SDNode*, std::vector<SUnit*> > SUnitMap;
                                           // SDNode to SUnit mapping (n -> n).
     std::vector<SUnit> SUnits;            // The scheduling units.
-    SmallSet<SDNode*, 16> CommuteSet;     // Nodes the should be commuted.
+    SmallSet<SDNode*, 16> CommuteSet;     // Nodes that should be commuted.
 
     ScheduleDAG(SelectionDAG &dag, MachineBasicBlock *bb,
                 const TargetMachine &tm);





More information about the llvm-commits mailing list