From 5af9a1aad6d69cb3a1bff761e8f799b39240d949 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 26 Jan 2016 14:55:17 +0000 Subject: [PATCH] [WebAssembly] Fix a typo in a comment. llvm-svn: 258810 --- lib/Target/WebAssembly/WebAssemblyISelLowering.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp b/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp index 3906b9d5387..b7491827d5c 100644 --- a/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp +++ b/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp @@ -291,7 +291,7 @@ bool WebAssemblyTargetLowering::allowsMisalignedMemoryAccesses( // 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)