forked from OSchip/llvm-project
fix an odd thinko in an assertion, all arm tests pass now.
llvm-svn: 96758
This commit is contained in:
parent
2bad7b0456
commit
26c79d13f2
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue