Make MachineOperand's immediate value an int and save 4 bytes out of

each MachineOperand. We don't really need an int64_t immediate :-).

llvm-svn: 11906
This commit is contained in:
Alkis Evlogimenos 2004-02-27 15:05:28 +00:00
parent 8d99063b38
commit a0bae43032
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ private:
// 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