From: Davide Italiano Date: Tue, 11 Jul 2017 19:19:45 +0000 (+0000) Subject: [NewGVN] Fix an innocent typo I found while debugging PR33720. X-Git-Tag: llvmorg-5.0.0-rc1~714 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=67b0e53dc1d1a63b343bcc464764c13f879d6a5c;p=platform%2Fupstream%2Fllvm.git [NewGVN] Fix an innocent typo I found while debugging PR33720. llvm-svn: 307694 --- diff --git a/llvm/lib/Transforms/Scalar/NewGVN.cpp b/llvm/lib/Transforms/Scalar/NewGVN.cpp index ee68f20..f70ec40 100644 --- a/llvm/lib/Transforms/Scalar/NewGVN.cpp +++ b/llvm/lib/Transforms/Scalar/NewGVN.cpp @@ -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.