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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168347 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Scalar/SROA.cpp b/lib/Transforms/Scalar/SROA.cpp
index 15103d7..85c5d0a 100644
--- a/lib/Transforms/Scalar/SROA.cpp
+++ b/lib/Transforms/Scalar/SROA.cpp
@@ -2113,7 +2113,8 @@
       return false;
 
     // 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 &&
         (EndOffset - BeginOffset) != VecSize)
       return false;