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 | 5df1578decc8b05ffaec0e7f5d1532234bc1be19 (patch) | |
tree | b67c46b23f6a12e1609c773926a6ecbd7150b11e | |
parent | a519d577251c2a1207b466a4659d9eff37a989e1 (diff) | |
download | external_llvm-5df1578decc8b05ffaec0e7f5d1532234bc1be19.zip external_llvm-5df1578decc8b05ffaec0e7f5d1532234bc1be19.tar.gz external_llvm-5df1578decc8b05ffaec0e7f5d1532234bc1be19.tar.bz2 |
improve "cannot yet select" errors a trivial amount: now
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
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 42fd78f..b0122da 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/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 && |