fix comment

llvm-svn: 140258
This commit is contained in:
Nadav Rotem 2011-09-21 17:14:40 +00:00
parent 253a7391ee
commit 50f123d8e5
1 changed files with 1 additions and 1 deletions

View File

@ -13564,7 +13564,7 @@ static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
// From, To sizes and ElemCount must be pow of two
if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
// We are going to use the original vector elt for storing.
// accumulated smaller vector elements must be a multiple of the store size.
// Accumulated smaller vector elements must be a multiple of the store size.
if (0 != (NumElems * FromSz) % ToSz) return SDValue();
unsigned SizeRatio = FromSz / ToSz;