diff options
author | Kristina Brooks <notstina@gmail.com> | 2019-03-12 07:08:19 +0000 |
---|---|---|
committer | Kristina Brooks <notstina@gmail.com> | 2019-03-12 07:08:19 +0000 |
commit | 5b1e1c0537d0e896ae1c0c5c2ff80ed68b397a80 (patch) | |
tree | a77139ebccdd6d6a2c474f36bd995b6ef3582e4d | |
parent | 5b1027a908c1fdda0e941edca18d5563370accfb (diff) | |
download | bcm5719-llvm-5b1e1c0537d0e896ae1c0c5c2ff80ed68b397a80.tar.gz bcm5719-llvm-5b1e1c0537d0e896ae1c0c5c2ff80ed68b397a80.zip |
Very minor typo. NFC
Typo `we we're` => `we were` in the pass EarlyCSE
Patch by liangdzou (Liang ZOU)
Differential Revision: https://reviews.llvm.org/D59241
llvm-svn: 355895
-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); |