diff options
author | Chris Lattner <sabre@nondot.org> | 2010-02-15 06:39:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-02-15 06:39:31 +0000 |
commit | 5ac03f1786a09cc3c7d268b24e70f76be00b32ac (patch) | |
tree | 6f83f1a67995324c586590924d53c9ab2802e9cd | |
parent | 020bb08026943944166a3650eb2633c614e6d964 (diff) |
don't make insanely large node numbers for no reason,
packing somewhat densely is better than not.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96213 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index 45a9d40719..c8523d81cc 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -609,7 +609,7 @@ namespace ISD { /// which do not reference a specific memory location should be less than /// this value. Those that do must not be less than this value, and can /// be used with SelectionDAG::getMemIntrinsicNode. - static const int FIRST_TARGET_MEMORY_OPCODE = 1 << 14; + static const int FIRST_TARGET_MEMORY_OPCODE = BUILTIN_OP_END+80; /// Node predicates |