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

Chris Lattner lattner at cs.uiuc.edu
Thu May 4 11:16:17 PDT 2006



Changes in directory llvm/lib/CodeGen/SelectionDAG:

ScheduleDAG.cpp updated: 1.85 -> 1.86
---
Log message:

Remove and simplify some more machineinstr/machineoperand stuff.


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

 ScheduleDAG.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp:1.85 llvm/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp:1.86
--- llvm/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp:1.85	Thu May  4 13:05:43 2006
+++ llvm/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp	Thu May  4 13:16:01 2006
@@ -184,7 +184,7 @@
 #endif
 
     // Create the new machine instruction.
-    MachineInstr *MI = new MachineInstr(Opc, NumMIOperands, true, true);
+    MachineInstr *MI = new MachineInstr(Opc, NumMIOperands);
     
     // Add result register values for things that are defined by this
     // instruction.






More information about the llvm-commits mailing list