diff options
| -rw-r--r-- | llvm/lib/Transforms/Scalar/EarlyCSE.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/EarlyCSE.cpp b/llvm/lib/Transforms/Scalar/EarlyCSE.cpp index c7c407c8677..eb81ac6aafa 100644 --- a/llvm/lib/Transforms/Scalar/EarlyCSE.cpp +++ b/llvm/lib/Transforms/Scalar/EarlyCSE.cpp @@ -1102,7 +1102,7 @@ bool EarlyCSE::processNode(DomTreeNode *Node) { // At the moment, we don't remove ordered stores, but do remove // unordered atomic stores. There's no special requirement (for // unordered atomics) about removing atomic stores only in favor of - // other atomic stores since we we're going to execute the non-atomic + // other atomic stores since we were going to execute the non-atomic // one anyway and the atomic one might never have become visible. if (LastStore) { ParseMemoryInst LastStoreMemInst(LastStore, TTI); |

