1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

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 0742b93bb9
commit 5193c08a8a

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