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/ARM/ARMISelLowering.h | |
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/ARM/ARMISelLowering.h')
-rw-r--r-- | lib/Target/ARM/ARMISelLowering.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMISelLowering.h b/lib/Target/ARM/ARMISelLowering.h index b717e0d73c..8408cc527a 100644 --- a/lib/Target/ARM/ARMISelLowering.h +++ b/lib/Target/ARM/ARMISelLowering.h @@ -27,7 +27,7 @@ namespace llvm { // ARM Specific DAG Nodes enum NodeType { // Start the numbering where the builting ops and target ops leave off. - FIRST_NUMBER = ISD::BUILTIN_OP_END+ARM::INSTRUCTION_LIST_END, + FIRST_NUMBER = ISD::BUILTIN_OP_END, Wrapper, // Wrapper - A wrapper node for TargetConstantPool, // TargetExternalSymbol, and TargetGlobalAddress. |