[llvm] r272846 - Typo. NFC.
Chad Rosier via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 15 14:41:23 PDT 2016
Author: mcrosier
Date: Wed Jun 15 16:41:22 2016
New Revision: 272846
URL: http://llvm.org/viewvc/llvm-project?rev=272846&view=rev
Log:
Typo. NFC.
Modified:
llvm/trunk/lib/Transforms/Scalar/DeadStoreElimination.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/DeadStoreElimination.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/DeadStoreElimination.cpp?rev=272846&r1=272845&r2=272846&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/DeadStoreElimination.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/DeadStoreElimination.cpp Wed Jun 15 16:41:22 2016
@@ -835,7 +835,7 @@ static bool eliminateDeadStores(BasicBlo
// 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.
More information about the llvm-commits
mailing list