Add a comment to associate a FIXME with a PR where it is matters.

llvm-svn: 168347
This commit is contained in:
Chandler Carruth 2012-11-20 01:27:48 +00:00
parent 18db795b05
commit 9324c96064
1 changed files with 2 additions and 1 deletions

View File

@ -2113,7 +2113,8 @@ static bool isVectorPromotionViable(const DataLayout &TD,
return false; return false;
// FIXME: We should build shuffle vector instructions to handle // FIXME: We should build shuffle vector instructions to handle
// non-element-sized accesses. // non-element-sized accesses. See PR14055 for an example of where this
// matters.
if ((EndOffset - BeginOffset) != ElementSize && if ((EndOffset - BeginOffset) != ElementSize &&
(EndOffset - BeginOffset) != VecSize) (EndOffset - BeginOffset) != VecSize)
return false; return false;