[llvm-commits] CVS: llvm/include/llvm/CodeGen/ScheduleDAG.h

Chris Lattner lattner at cs.uiuc.edu
Thu Mar 9 22:30:23 PST 2006



Changes in directory llvm/include/llvm/CodeGen:

ScheduleDAG.h updated: 1.15 -> 1.16
---
Log message:

make some methods protected instead of private


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

 ScheduleDAG.h |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Index: llvm/include/llvm/CodeGen/ScheduleDAG.h
diff -u llvm/include/llvm/CodeGen/ScheduleDAG.h:1.15 llvm/include/llvm/CodeGen/ScheduleDAG.h:1.16
--- llvm/include/llvm/CodeGen/ScheduleDAG.h:1.15	Tue Mar  7 22:24:56 2006
+++ llvm/include/llvm/CodeGen/ScheduleDAG.h	Fri Mar 10 00:30:11 2006
@@ -382,16 +382,16 @@
   private:
     void AddOperand(MachineInstr *MI, SDOperand Op, unsigned IIOpNum,
                     const TargetInstrDescriptor *II);
-      
+
+    void AddToGroup(NodeInfo *D, NodeInfo *U);
+protected:
     /// PrepareNodeInfo - Set up the basic minimum node info for scheduling.
     /// 
     void PrepareNodeInfo();
-
+    
     /// IdentifyGroups - Put flagged nodes into groups.
     ///
     void IdentifyGroups();
-
-    void AddToGroup(NodeInfo *D, NodeInfo *U);
   };
 
   /// createSimpleDAGScheduler - This creates a simple two pass instruction






More information about the llvm-commits mailing list