aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM
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
commit868636ebd973e968cc698b48704420ec24a431fd (patch)
treec06fabfa0c787de16d9aa76013ebc354f535faa2 /lib/Target/ARM
parent3ecdb558e5923cae760d88486492d059d0bb03e3 (diff)
downloadexternal_llvm-868636ebd973e968cc698b48704420ec24a431fd.zip
external_llvm-868636ebd973e968cc698b48704420ec24a431fd.tar.gz
external_llvm-868636ebd973e968cc698b48704420ec24a431fd.tar.bz2
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')
-rw-r--r--lib/Target/ARM/ARMISelLowering.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMISelLowering.h b/lib/Target/ARM/ARMISelLowering.h
index b717e0d..8408cc5 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.