diff options
author | Chris Lattner <sabre@nondot.org> | 2010-02-28 21:36:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-02-28 21:36:14 +0000 |
commit | 21221e357c6aa9ade3966ee86dab7d44c25220d0 (patch) | |
tree | 78dd6f9ed9f45dc89909c78f3dd7ad38173b88a2 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 9a21500edc485a2c383a03fba429943f031c1398 (diff) |
enhance the new isel to handle the 'node already exists'
case of MorphNodeTo directly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97417 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 4724673122..f008fad346 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -4660,7 +4660,7 @@ SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc, return MorphNodeTo(N, Opc, VTs, Ops, 3); } -/// MorphNodeTo - These *mutate* the specified node to have the specified +/// MorphNodeTo - This *mutates* the specified node to have the specified /// return type, opcode, and operands. /// /// Note that MorphNodeTo returns the resultant node. If there is already a |