Remove an unneeded test.

llvm-svn: 48755
This commit is contained in:
Evan Cheng 2008-03-24 23:55:16 +00:00
parent b2f4d3138f
commit fe7610f37f
1 changed files with 1 additions and 1 deletions

View File

@ -770,7 +770,7 @@ SDOperand DAGCombiner::combine(SDNode *N) {
SDOperand Ops[] = { N1, N0 };
SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
Ops, 2);
if (CSENode && CSENode->use_size() <= N->use_size())
if (CSENode)
return SDOperand(CSENode, 0);
}
}