Fix typo in PPCISelLowering

Thanks to Bill Schmidt for finding this in review of r178480.

llvm-svn: 178521
This commit is contained in:
Hal Finkel 2013-04-02 03:29:51 +00:00
parent c87d97231d
commit 93d75ea08a
1 changed files with 1 additions and 1 deletions

View File

@ -4788,7 +4788,7 @@ SDValue PPCTargetLowering::LowerINT_TO_FP(SDValue Op,
"UINT_TO_FP is supported only with FPCVT");
// If we have FCFIDS, then use it when converting to single-precision.
// Otherwise, convert to double-prcision and then round.
// Otherwise, convert to double-precision and then round.
unsigned FCFOp = (PPCSubTarget.hasFPCVT() && Op.getValueType() == MVT::f32) ?
(Op.getOpcode() == ISD::UINT_TO_FP ?
PPCISD::FCFIDUS : PPCISD::FCFIDS) :