diff options
author | Chris Lattner <sabre@nondot.org> | 2006-02-22 16:23:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-02-22 16:23:43 +0000 |
commit | 410354fe0c052141dadeca939395743f8dd58e38 (patch) | |
tree | 93f7cc80943a94623335b126b87998cebbe0e00b /include/llvm/CodeGen/MachineInstr.h | |
parent | a2a51607a6601d42c5f559858f77ef1cad86efe1 (diff) | |
download | external_llvm-410354fe0c052141dadeca939395743f8dd58e38.zip external_llvm-410354fe0c052141dadeca939395743f8dd58e38.tar.gz external_llvm-410354fe0c052141dadeca939395743f8dd58e38.tar.bz2 |
Make the LLVM headers "-ansi -pedantic -Wno-long-long" clean.
Patch by Martin Partel!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26313 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineInstr.h')
-rw-r--r-- | include/llvm/CodeGen/MachineInstr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index 56f3749..4f09046 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -79,7 +79,7 @@ private: LOFLAG32 = 0x08, // operand is %lo32(value_or_immedVal) HIFLAG64 = 0x10, // operand is %hi64(value_or_immedVal) LOFLAG64 = 0x20, // operand is %lo64(value_or_immedVal) - PCRELATIVE = 0x40, // Operand is relative to PC, not a global address + PCRELATIVE = 0x40 // Operand is relative to PC, not a global address }; public: @@ -106,7 +106,7 @@ public: MO_FrameIndex, // Abstract Stack Frame Index MO_ConstantPoolIndex, // Address of indexed Constant in Constant Pool MO_ExternalSymbol, // Name of external global symbol - MO_GlobalAddress, // Address of a global value + MO_GlobalAddress // Address of a global value }; private: |