Keep names even when inlining. This allows us to realize that ADDI is:
authorChris Lattner <sabre@nondot.org>
Thu, 8 Sep 2005 17:45:12 +0000 (17:45 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 8 Sep 2005 17:45:12 +0000 (17:45 +0000)
commitfbf8e57639cacba2a4be13400f5768cd3a10fd17
tree1a3dd89c39a4d25d450b9e14847324d85c7ff9a2
parentbfde080ce0ef03f6a95de38089b306d3c7a50f51
Keep names even when inlining.  This allows us to realize that ADDI is:

(set GPRC:i32:$rD, (add GPRC:i32:$rA, (imm)<<Predicate_immSExt16>>:$imm))

not:

(set GPRC:i32:$rD, (add GPRC:i32:$rA, (imm)<<Predicate_immSExt16>>))

(we keep the ":$imm")

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23269 91177308-0d34-0410-b5e6-96231b3b80d8
utils/TableGen/DAGISelEmitter.cpp