1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Fix a thinko.

llvm-svn: 43639
This commit is contained in:
Duncan Sands 2007-11-02 15:18:06 +00:00
parent cd1d243989
commit 281da5e25f

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