From: Kristina Brooks Date: Tue, 12 Mar 2019 07:08:19 +0000 (+0000) Subject: Very minor typo. NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5cb331b8894a70c626668f022998305c4f4be334;p=llvm 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@355895 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/EarlyCSE.cpp b/lib/Transforms/Scalar/EarlyCSE.cpp index c7c407c8677..eb81ac6aafa 100644 --- a/lib/Transforms/Scalar/EarlyCSE.cpp +++ b/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);