diff options
author | Dan Gohman <gohman@apple.com> | 2008-09-23 18:42:32 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-09-23 18:42:32 +0000 |
commit | 0ba2bcfcc3149a25d08aa8aa00fb6c34a4e25bdd (patch) | |
tree | c06fabfa0c787de16d9aa76013ebc354f535faa2 /lib/Target/Mips | |
parent | 987756308b4df235a51c7db3778f5cf0ff3d47a4 (diff) |
Fix these enums' starting values to reflect the way that
instruction opcodes are now numbered. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56497 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips')
-rw-r--r-- | lib/Target/Mips/MipsISelLowering.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Mips/MipsISelLowering.h b/lib/Target/Mips/MipsISelLowering.h index fd595c9464..b19ce58d2b 100644 --- a/lib/Target/Mips/MipsISelLowering.h +++ b/lib/Target/Mips/MipsISelLowering.h @@ -24,7 +24,7 @@ namespace llvm { namespace MipsISD { enum NodeType { // Start the numbering from where ISD NodeType finishes. - FIRST_NUMBER = ISD::BUILTIN_OP_END+Mips::INSTRUCTION_LIST_END, + FIRST_NUMBER = ISD::BUILTIN_OP_END, // Jump and link (call) JmpLink, |