EarlyCSE: fix typo from rL255054.
authorJF Bastien <jfb@google.com>
Wed, 9 Dec 2015 09:05:42 +0000 (09:05 +0000)
committerJF Bastien <jfb@google.com>
Wed, 9 Dec 2015 09:05:42 +0000 (09:05 +0000)
llvm-svn: 255102

llvm/lib/Transforms/Scalar/EarlyCSE.cpp

index eb38ef5..6fa194e 100644 (file)
@@ -724,7 +724,7 @@ bool EarlyCSE::processNode(DomTreeNode *Node) {
 
         // 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;