diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2016-06-15 21:41:22 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2016-06-15 21:41:22 +0000 |
commit | 844e2df94b09603bfe2f40b1bcb32822f069e815 (patch) | |
tree | 764c63a0d18f7bc3854b50670846c7a75d49b287 /llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp | |
parent | 7ce1bc71f477b4ff8afc40e0cb766f85a139a1a1 (diff) | |
download | bcm5719-llvm-844e2df94b09603bfe2f40b1bcb32822f069e815.tar.gz bcm5719-llvm-844e2df94b09603bfe2f40b1bcb32822f069e815.zip |
Typo. NFC.
llvm-svn: 272846
Diffstat (limited to 'llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp')
-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. |