aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/Mips
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-09-23 18:42:32 +0000
committerDan Gohman <gohman@apple.com>2008-09-23 18:42:32 +0000
commit0ba2bcfcc3149a25d08aa8aa00fb6c34a4e25bdd (patch)
treec06fabfa0c787de16d9aa76013ebc354f535faa2 /lib/Target/Mips
parent987756308b4df235a51c7db3778f5cf0ff3d47a4 (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.h2
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,