Fix a thinko.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43639 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan Sands 2007-11-02 15:18:06 +00:00
parent e3d936ac9c
commit e414cdacb4

View File

@ -783,12 +783,11 @@ void DAGTypeLegalizer::ExpandResult(SDNode *N, unsigned ResNo) {
// If the target wants to, allow it to lower this itself.
std::pair<SDOperand,SDOperand> P = TLI.ExpandOperationResult(N, DAG);
if (P.first.Val) {
Lo = P.first;
Hi = P.second;
SetExpandedOp(SDOperand(N, ResNo), P.first, P.second);
return;
}
}
switch (N->getOpcode()) {
default:
#ifndef NDEBUG