[x86] Fix a comment

llvm-svn: 226974
This commit is contained in:
Bruno Cardoso Lopes 2015-01-24 00:22:04 +00:00
parent 128e9d3459
commit 1a8a7de35c

View File

@ -24813,7 +24813,7 @@ static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
return SDValue();
SDValue SrcVal = Chain.getOperand(1);
// On 32bit systems, we can't save 64bit integers, use f64 instead.
// On 32bit systems, we can't store 64bit integers, use f64 instead.
bool Usef64 = TLI.isTypeLegal(MVT::f64) && !Subtarget->is64Bit();
if (Usef64)
SrcVal = DAG.getNode(ISD::BITCAST, dl, MVT::f64, SrcVal);