Fix typo
authorMatt Arsenault <Matthew.Arsenault@amd.com>
Wed, 5 Mar 2014 21:47:22 +0000 (21:47 +0000)
committerMatt Arsenault <Matthew.Arsenault@amd.com>
Wed, 5 Mar 2014 21:47:22 +0000 (21:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203013 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/R600/AMDGPUISelLowering.cpp

index 9629b70b4702ab94a25c8b685dc6ff23edbf5338..8d4895267bbd4c1d33937877b2a6521b1ab7d446 100644 (file)
@@ -613,9 +613,9 @@ SDValue AMDGPUTargetLowering::MergeVectorStore(const SDValue &Op,
   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();
   }