Make MachineOperand's immediate value an int and save 4 bytes out of
authorAlkis Evlogimenos <alkis@evlogimenos.com>
Fri, 27 Feb 2004 15:05:28 +0000 (15:05 +0000)
committerAlkis Evlogimenos <alkis@evlogimenos.com>
Fri, 27 Feb 2004 15:05:28 +0000 (15:05 +0000)
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

index 57f63e7af5e01e99988ba68daeb9f29992437316..c63fa851fb7351b596710827a94db158ae0f3072 100644 (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