[llvm] r353176 - Fix typo in comment, NFCI
Krasimir Georgiev via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 5 07:00:56 PST 2019
Author: krasimir
Date: Tue Feb 5 07:00:56 2019
New Revision: 353176
URL: http://llvm.org/viewvc/llvm-project?rev=353176&view=rev
Log:
Fix typo in comment, NFCI
Modified:
llvm/trunk/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp
Modified: llvm/trunk/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp?rev=353176&r1=353175&r2=353176&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp (original)
+++ llvm/trunk/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp Tue Feb 5 07:00:56 2019
@@ -68,7 +68,7 @@ void emitWebAssemblyDisassemblerTables(
// If the new one is explicitly marked as canonical, take it.
if (!IsCanonicalNew) {
// Neither the existing or new instruction is canonical.
- // Pick the one with with the shortest name as heuristic.
+ // Pick the one with the shortest name as heuristic.
// Though ideally IsCanonical is always defined for at least one
// variant so this never has to apply.
if (CGIP.second->AsmString.size() <= CGI.AsmString.size())
More information about the llvm-commits
mailing list