[llvm] r203013 - Fix typo
Matt Arsenault
Matthew.Arsenault at amd.com
Wed Mar 5 13:47:22 PST 2014
Author: arsenm
Date: Wed Mar 5 15:47:22 2014
New Revision: 203013
URL: http://llvm.org/viewvc/llvm-project?rev=203013&view=rev
Log:
Fix typo
Modified:
llvm/trunk/lib/Target/R600/AMDGPUISelLowering.cpp
Modified: llvm/trunk/lib/Target/R600/AMDGPUISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/R600/AMDGPUISelLowering.cpp?rev=203013&r1=203012&r2=203013&view=diff
==============================================================================
--- llvm/trunk/lib/Target/R600/AMDGPUISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/R600/AMDGPUISelLowering.cpp Wed Mar 5 15:47:22 2014
@@ -613,9 +613,9 @@ SDValue AMDGPUTargetLowering::MergeVecto
EVT MemVT = Store->getMemoryVT();
unsigned MemBits = MemVT.getSizeInBits();
- // Byte stores are really expensive, so if possible, try to pack
- // 32-bit vector truncatating store into an i32 store.
- // XXX: We could also handle optimize other vector bitwidths
+ // Byte stores are really expensive, so if possible, try to pack 32-bit vector
+ // truncating store into an i32 store.
+ // XXX: We could also handle optimize other vector bitwidths.
if (!MemVT.isVector() || MemBits > 32) {
return SDValue();
}
More information about the llvm-commits
mailing list