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

Chris Lattner lattner at cs.uiuc.edu
Thu May 4 12:36:23 PDT 2006



Changes in directory llvm/include/llvm/CodeGen:

MachineInstr.h updated: 1.180 -> 1.181
---
Log message:

Final pass of minor cleanups for MachineInstr


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

 MachineInstr.h |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)


Index: llvm/include/llvm/CodeGen/MachineInstr.h
diff -u llvm/include/llvm/CodeGen/MachineInstr.h:1.180 llvm/include/llvm/CodeGen/MachineInstr.h:1.181
--- llvm/include/llvm/CodeGen/MachineInstr.h:1.180	Thu May  4 14:14:44 2006
+++ llvm/include/llvm/CodeGen/MachineInstr.h	Thu May  4 14:36:09 2006
@@ -71,11 +71,11 @@
 
 private:
   union {
-    GlobalValue *GV;    // LLVM global for MO_GlobalAddress.
-    int64_t immedVal;   // Constant value for an explicit constant
-    MachineBasicBlock *MBB;     // For MO_MachineBasicBlock type
-    const char *SymbolName;     // For MO_ExternalSymbol type
-    unsigned RegNo;            // For MO_Register number for an explicit register
+    GlobalValue *GV;          // For MO_GlobalAddress.
+    MachineBasicBlock *MBB;   // For MO_MachineBasicBlock.
+    const char *SymbolName;   // For MO_ExternalSymbol.
+    unsigned RegNo;           // For MO_Register.
+    int64_t immedVal;         // For MO_Immediate and MO_*Index.
   } contents;
 
   char flags;                   // see bit field definitions above






More information about the llvm-commits mailing list