diff options
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp b/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp index e6d39a71868..e0f6099dab5 100644 --- a/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp +++ b/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp @@ -835,7 +835,7 @@ static bool eliminateDeadStores(BasicBlock &BB, AliasAnalysis *AA, // Get the memory clobbered by the instruction we depend on. MemDep will // skip any instructions that 'Loc' clearly doesn't interact with. If we // end up depending on a may- or must-aliased load, then we can't optimize - // away the store and we bail out. However, if we depend on on something + // away the store and we bail out. However, if we depend on something // that overwrites the memory location we *can* potentially optimize it. // // Find out what memory location the dependent instruction stores. |