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

Brian Gaeke gaeke at cs.uiuc.edu
Tue Jun 8 13:54:05 PDT 2004


Changes in directory llvm/include/llvm/CodeGen:

InstrSelection.h updated: 1.32 -> 1.33

---
Log message:

Add a TmpInstruction ctor that doesn't take a MCFI.


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

Index: llvm/include/llvm/CodeGen/InstrSelection.h
diff -u llvm/include/llvm/CodeGen/InstrSelection.h:1.32 llvm/include/llvm/CodeGen/InstrSelection.h:1.33
--- llvm/include/llvm/CodeGen/InstrSelection.h:1.32	Sun Dec 28 15:22:35 2003
+++ llvm/include/llvm/CodeGen/InstrSelection.h	Tue Jun  8 13:52:46 2004
@@ -75,7 +75,12 @@
   // s1 must be a valid value.  s2 may be NULL.
   TmpInstruction(MachineCodeForInstruction& mcfi,
                  Value *s1, Value *s2 = 0, const std::string &name = "");
-  
+                 
+  // Constructor that uses the type of S1 as the type of the temporary,
+  // but does not require a MachineCodeForInstruction.
+  // s1 must be a valid value.  s2 may be NULL.
+  TmpInstruction(Value *s1, Value *s2 = 0, const std::string &name = "");
+
   // Constructor that requires the type of the temporary to be specified.
   // Both S1 and S2 may be NULL.
   TmpInstruction(MachineCodeForInstruction& mcfi,





More information about the llvm-commits mailing list