[x86] Fix a comment

llvm-svn: 226974
This commit is contained in:
Bruno Cardoso Lopes 2015-01-24 00:22:04 +00:00
parent 17e6caee63
commit ddcc2e31a7
1 changed files with 1 additions and 1 deletions

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);