[llvm] r255102 - EarlyCSE: fix typo from rL255054.

JF Bastien via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 9 01:05:43 PST 2015


Author: jfb
Date: Wed Dec  9 03:05:42 2015
New Revision: 255102

URL: http://llvm.org/viewvc/llvm-project?rev=255102&view=rev
Log:
EarlyCSE: fix typo from rL255054.

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=255102&r1=255101&r2=255102&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/EarlyCSE.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/EarlyCSE.cpp Wed Dec  9 03:05:42 2015
@@ -724,7 +724,7 @@ bool EarlyCSE::processNode(DomTreeNode *
 
         // Remember that this was the last normal store we saw for DSE.
         // Note that we can't delete an earlier atomic or volatile store in
-        // favor of a later one which isn't.  We could in principal remove an
+        // favor of a later one which isn't.  We could in principle remove an
         // earlier unordered store if the later one is also unordered.
         if (MemInst.isSimple())
           LastStore = Inst;




More information about the llvm-commits mailing list