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

Dan Gohman via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 26 06:55:21 PST 2016


Author: djg
Date: Tue Jan 26 08:55:17 2016
New Revision: 258810

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

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

Modified: llvm/trunk/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp?rev=258810&r1=258809&r2=258810&view=diff
==============================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp Tue Jan 26 08:55:17 2016
@@ -291,7 +291,7 @@ bool WebAssemblyTargetLowering::allowsMi
   // WebAssembly supports unaligned accesses, though it should be declared
   // with the p2align attribute on loads and stores which do so, and there
   // may be a performance impact. We tell LLVM they're "fast" because
-  // for the kinds of things that LLVM uses this for (merging agacent stores
+  // for the kinds of things that LLVM uses this for (merging adjacent stores
   // of constants, etc.), WebAssembly implementations will either want the
   // unaligned access or they'll split anyway.
   if (Fast)




More information about the llvm-commits mailing list