diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2015-01-24 00:22:04 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2015-01-24 00:22:04 +0000 |
commit | ddcc2e31a714ffcf463a92d8eaa2848674d33bac (patch) | |
tree | f2f040f2333df7626864d74c7b1724693d9fa539 /llvm/lib | |
parent | 17e6caee639a60325715841cb2c224ccdfb99373 (diff) | |
download | bcm5719-llvm-ddcc2e31a714ffcf463a92d8eaa2848674d33bac.tar.gz bcm5719-llvm-ddcc2e31a714ffcf463a92d8eaa2848674d33bac.zip |
[x86] Fix a comment
llvm-svn: 226974
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index 37026ce0f12..684f23b464e 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -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); |