aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-12-19 01:46:09 +0000
committerDan Gohman <gohman@apple.com>2009-12-19 01:46:09 +0000
commit2929e1143acdadec2bd197dc15ab6c77cb1857da (patch)
tree218a00e25897500d403d4d2fb46aaf5ac3eb228c /utils
parentcd0129f5a6f0485ecac525c17a3c5dff0a19ca5f (diff)
downloadexternal_llvm-2929e1143acdadec2bd197dc15ab6c77cb1857da.zip
external_llvm-2929e1143acdadec2bd197dc15ab6c77cb1857da.tar.gz
external_llvm-2929e1143acdadec2bd197dc15ab6c77cb1857da.tar.bz2
Fix a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91741 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/DAGISelEmitter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/DAGISelEmitter.cpp b/utils/TableGen/DAGISelEmitter.cpp
index 66debe2..a901fd0 100644
--- a/utils/TableGen/DAGISelEmitter.cpp
+++ b/utils/TableGen/DAGISelEmitter.cpp
@@ -1292,8 +1292,8 @@ public:
// possible and it avoids CSE map recalculation for the node's
// users, however it's tricky to use in a non-root context.
//
- // We also don't use if the pattern replacement is being used to
- // jettison a chain result, since morphing the node in place
+ // We also don't use SelectNodeTo if the pattern replacement is being
+ // used to jettison a chain result, since morphing the node in place
// would leave users of the chain dangling.
//
if (!isRoot || (InputHasChain && !NodeHasChain)) {