fix an odd thinko in an assertion, all arm tests pass now.

llvm-svn: 96758
This commit is contained in:
Chris Lattner 2010-02-21 20:57:28 +00:00
parent 2bad7b0456
commit 26c79d13f2
1 changed files with 1 additions and 1 deletions

View File

@ -470,7 +470,7 @@ SDNode *SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
continue;
case OPC_CheckFoldableChainNode: {
assert(!NodeStack.size() == 1 && "No parent node");
assert(NodeStack.size() != 1 && "No parent node");
// Verify that all intermediate nodes between the root and this one have
// a single use.
bool HasMultipleUses = false;