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 | af197502d6f94a962367913b9247dd8afe57f3e0 (patch) | |
| tree | 6932e7b8a7ef12d5904c13ef225ae8ee00199363 /llvm/lib/CodeGen | |
| parent | 9d67dcadce779dbc6dcb8a4a57e339815e0b7eda (diff) | |
| download | bcm5719-llvm-af197502d6f94a962367913b9247dd8afe57f3e0.tar.gz bcm5719-llvm-af197502d6f94a962367913b9247dd8afe57f3e0.zip | |
enhance the new isel to handle the 'node already exists'
case of MorphNodeTo directly.
llvm-svn: 97417
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 47246731229..f008fad3467 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/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 |

