From bd16ef84bfecc4b057ab3292b83f830e78760515 Mon Sep 17 00:00:00 2001 From: Alkis Evlogimenos Date: Fri, 27 Feb 2004 15:05:28 +0000 Subject: [PATCH] Make MachineOperand's immediate value an int and save 4 bytes out of each MachineOperand. We don't really need an int64_t immediate :-). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11906 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/MachineInstr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index 57f63e7af5e..c63fa851fb7 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -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 -- 2.34.1