[llvm] r307694 - [NewGVN] Fix an innocent typo I found while debugging PR33720.

Davide Italiano via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 11 12:19:45 PDT 2017


Author: davide
Date: Tue Jul 11 12:19:45 2017
New Revision: 307694

URL: http://llvm.org/viewvc/llvm-project?rev=307694&view=rev
Log:
[NewGVN] Fix an innocent typo I found while debugging PR33720.

Modified:
    llvm/trunk/lib/Transforms/Scalar/NewGVN.cpp

Modified: llvm/trunk/lib/Transforms/Scalar/NewGVN.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/NewGVN.cpp?rev=307694&r1=307693&r2=307694&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/NewGVN.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/NewGVN.cpp Tue Jul 11 12:19:45 2017
@@ -2135,7 +2135,7 @@ void NewGVN::moveValueToNewCongruenceCla
                      << 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.




More information about the llvm-commits mailing list