aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlkis Evlogimenos <alkis@evlogimenos.com>2004-02-27 15:05:28 +0000
committerAlkis Evlogimenos <alkis@evlogimenos.com>2004-02-27 15:05:28 +0000
commitbd16ef84bfecc4b057ab3292b83f830e78760515 (patch)
tree0e380090a1faa45772937db28ca0fdacfcae883d
parente56508eb7e21f6e0bfd3948379791e412f82ce58 (diff)
downloadexternal_llvm-bd16ef84bfecc4b057ab3292b83f830e78760515.zip
external_llvm-bd16ef84bfecc4b057ab3292b83f830e78760515.tar.gz
external_llvm-bd16ef84bfecc4b057ab3292b83f830e78760515.tar.bz2
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
-rw-r--r--include/llvm/CodeGen/MachineInstr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h
index 57f63e7..c63fa85 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