[NewGVN] Fix an innocent typo I found while debugging PR33720.
authorDavide Italiano <davide@freebsd.org>
Tue, 11 Jul 2017 19:19:45 +0000 (19:19 +0000)
committerDavide Italiano <davide@freebsd.org>
Tue, 11 Jul 2017 19:19:45 +0000 (19:19 +0000)
llvm-svn: 307694

llvm/lib/Transforms/Scalar/NewGVN.cpp

index ee68f20..f70ec40 100644 (file)
@@ -2135,7 +2135,7 @@ void NewGVN::moveValueToNewCongruenceClass(Instruction *I, const Expression *E,
                      << NewClass->getID() << " from " << *NewClass->getLeader()
                      << " to  " << *SI << " because store joined class\n");
         // If we changed the leader, we have to mark it changed because we don't
-        // know what it will do to symbolic evlauation.
+        // know what it will do to symbolic evaluation.
         NewClass->setLeader(SI);
       }
       // We rely on the code below handling the MemoryAccess change.