diff options
author | Chris Lattner <sabre@nondot.org> | 2010-12-21 02:07:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-12-21 02:07:03 +0000 |
commit | 17f906be967359727aebdda197f248660131c10f (patch) | |
tree | fa61a320ec75ff33ea64fbe91ddbde70e0f49391 | |
parent | f667ab526bbefa00d895912f959de6469ec0af89 (diff) | |
download | bcm5719-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
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
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 && |