From: JF Bastien Date: Wed, 9 Dec 2015 09:05:42 +0000 (+0000) Subject: EarlyCSE: fix typo from rL255054. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=547c6d442b5dc7a79b4ea64e2b99e312b50fd5c6;p=oota-llvm.git EarlyCSE: fix typo from rL255054. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255102 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/EarlyCSE.cpp b/lib/Transforms/Scalar/EarlyCSE.cpp index eb38ef5f164..6fa194e5709 100644 --- a/lib/Transforms/Scalar/EarlyCSE.cpp +++ b/lib/Transforms/Scalar/EarlyCSE.cpp @@ -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;