[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineInstr.h
Alkis Evlogimenos
alkis at niobe.cs.uiuc.edu
Fri Feb 27 09:06:01 PST 2004
Changes in directory llvm/include/llvm/CodeGen:
MachineInstr.h updated: 1.140 -> 1.141
---
Log message:
Make MachineOperand's immediate value an int and save 4 bytes out of
each MachineOperand. We don't really need an int64_t immediate :-).
---
Diffs of the changes: (+1 -1)
Index: llvm/include/llvm/CodeGen/MachineInstr.h
diff -u llvm/include/llvm/CodeGen/MachineInstr.h:1.140 llvm/include/llvm/CodeGen/MachineInstr.h:1.141
--- llvm/include/llvm/CodeGen/MachineInstr.h:1.140 Sun Feb 22 13:23:26 2004
+++ llvm/include/llvm/CodeGen/MachineInstr.h Fri Feb 27 09:05:28 2004
@@ -117,7 +117,7 @@
// the generated machine code.
// LLVM global for MO_GlobalAddress.
- int64_t immedVal; // Constant value for an explicit constant
+ int immedVal; // Constant value for an explicit constant
MachineBasicBlock *MBB; // For MO_MachineBasicBlock type
std::string *SymbolName; // For MO_ExternalSymbol type
More information about the llvm-commits
mailing list