diff options
| author | Davide Italiano <davide@freebsd.org> | 2017-07-11 19:19:45 +0000 |
|---|---|---|
| committer | Davide Italiano <davide@freebsd.org> | 2017-07-11 19:19:45 +0000 |
| commit | 67b0e53dc1d1a63b343bcc464764c13f879d6a5c (patch) | |
| tree | af6f35b5950a085a0071f2b9b9f4239c49ffbbe0 /llvm/lib/Transforms/Scalar/NewGVN.cpp | |
| parent | bcd0ae061711fb4c5e8fce8a19dd06cb8ced52c2 (diff) | |
| download | bcm5719-llvm-67b0e53dc1d1a63b343bcc464764c13f879d6a5c.tar.gz bcm5719-llvm-67b0e53dc1d1a63b343bcc464764c13f879d6a5c.zip | |
[NewGVN] Fix an innocent typo I found while debugging PR33720.
llvm-svn: 307694
Diffstat (limited to 'llvm/lib/Transforms/Scalar/NewGVN.cpp')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/NewGVN.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/NewGVN.cpp b/llvm/lib/Transforms/Scalar/NewGVN.cpp index ee68f20b1ec..f70ec40f045 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. |

