[llvm] r335574 - [WebAssembly] Fix a typo in a comment.

Dan Gohman via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 25 20:03:41 PDT 2018


Author: djg
Date: Mon Jun 25 20:03:41 2018
New Revision: 335574

URL: http://llvm.org/viewvc/llvm-project?rev=335574&view=rev
Log:
[WebAssembly] Fix a typo in a comment.

Modified:
    llvm/trunk/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp

Modified: llvm/trunk/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp?rev=335574&r1=335573&r2=335574&view=diff
==============================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp (original)
+++ llvm/trunk/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp Mon Jun 25 20:03:41 2018
@@ -12,7 +12,7 @@
 //
 /// LiveIntervals normally runs before register allocation when the code is
 /// only recently lowered out of SSA form, so it's uncommon for registers to
-/// have multiple defs, and then they do, the defs are usually closely related.
+/// have multiple defs, and when they do, the defs are usually closely related.
 /// Later, after coalescing, tail duplication, and other optimizations, it's
 /// more common to see registers with multiple unrelated defs. This pass
 /// updates LiveIntervals to distribute the value numbers across separate




More information about the llvm-commits mailing list