summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-12-21 02:07:03 +0000
committerChris Lattner <sabre@nondot.org>2010-12-21 02:07:03 +0000
commit17f906be967359727aebdda197f248660131c10f (patch)
treefa61a320ec75ff33ea64fbe91ddbde70e0f49391 /llvm/lib
parentf667ab526bbefa00d895912f959de6469ec0af89 (diff)
downloadbcm5719-llvm-17f906be967359727aebdda197f248660131c10f.tar.gz
bcm5719-llvm-17f906be967359727aebdda197f248660131c10f.zip
improve "cannot yet select" errors a trivial amount: now
they are just as useless, but at least a bit more gramatical llvm-svn: 122305
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index 42fd78f940b..b0122da099b 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -2726,7 +2726,7 @@ SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
void SelectionDAGISel::CannotYetSelect(SDNode *N) {
std::string msg;
raw_string_ostream Msg(msg);
- Msg << "Cannot yet select: ";
+ Msg << "Cannot select: ";
if (N->getOpcode() != ISD::INTRINSIC_W_CHAIN &&
N->getOpcode() != ISD::INTRINSIC_WO_CHAIN &&
OpenPOWER on IntegriCloud