improve "cannot yet select" errors a trivial amount: now
authorChris Lattner <sabre@nondot.org>
Tue, 21 Dec 2010 02:07:03 +0000 (02:07 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 21 Dec 2010 02:07:03 +0000 (02:07 +0000)
they are just as useless, but at least a bit more gramatical

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122305 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

index 42fd78f940bd3e135f675d99fa7705a103697663..b0122da099b807cd0cee577fbbba5e50aa8e353d 100644 (file)
@@ -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 &&