[llvm] r355895 - Very minor typo. NFC

Kristina Brooks via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 12 00:08:19 PDT 2019


Author: kristina
Date: Tue Mar 12 00:08:19 2019
New Revision: 355895

URL: http://llvm.org/viewvc/llvm-project?rev=355895&view=rev
Log:
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


Modified:
    llvm/trunk/lib/Transforms/Scalar/EarlyCSE.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/EarlyCSE.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/EarlyCSE.cpp?rev=355895&r1=355894&r2=355895&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/EarlyCSE.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/EarlyCSE.cpp Tue Mar 12 00:08:19 2019
@@ -1102,7 +1102,7 @@ bool EarlyCSE::processNode(DomTreeNode *
         // 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);




More information about the llvm-commits mailing list