diff options
Diffstat (limited to 'llvm/lib/Transforms')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/LICM.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/Transforms/Scalar/LICM.cpp b/llvm/lib/Transforms/Scalar/LICM.cpp index aed6a209fca..d3d52f5bb42 100644 --- a/llvm/lib/Transforms/Scalar/LICM.cpp +++ b/llvm/lib/Transforms/Scalar/LICM.cpp @@ -793,7 +793,7 @@ void LICM::PromoteAliasSet(AliasSet &AS) {        }        if (StoreInst *S = dyn_cast<StoreInst>(II)) { -        // If this is a load to an unrelated pointer, ignore it. +        // If this is a store to an unrelated pointer, ignore it.          if (!PointerMustAliases.count(S->getOperand(1))) continue;          // Remember that this is the active value in the block. | 

