remove dead code

llvm-svn: 24896
This commit is contained in:
Chris Lattner 2005-12-21 05:27:51 +00:00
parent b1f01ac2fb
commit 72575d882b
1 changed files with 0 additions and 4 deletions

View File

@ -552,10 +552,6 @@ SparcV8TargetLowering::LowerCallTo(SDOperand Chain, const Type *RetTy,
Chain = DAG.getNode(ISD::CALLSEQ_END, MVT::Other, Chain,
DAG.getConstant(ArgsSize, getPointerTy()));
MVT::ValueType ActualRetTyVT = RetTyVT;
if (RetTyVT >= MVT::i1 && RetTyVT <= MVT::i16)
ActualRetTyVT = MVT::i32; // Promote result to i32.
return std::make_pair(RetVal, Chain);
}