[llvm] e85ed44 - [WebAssembly] Fix a typo in comments

Heejin Ahn via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 14 00:45:28 PDT 2021


Author: Heejin Ahn
Date: 2021-09-14T00:45:02-07:00
New Revision: e85ed4437307afd2d79af5f9778fd98ce5cc036b

URL: https://github.com/llvm/llvm-project/commit/e85ed4437307afd2d79af5f9778fd98ce5cc036b
DIFF: https://github.com/llvm/llvm-project/commit/e85ed4437307afd2d79af5f9778fd98ce5cc036b.diff

LOG: [WebAssembly] Fix a typo in comments

Added: 
    

Modified: 
    llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp b/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
index 33a9c608a9a6b..aaeedc2024b4e 100644
--- a/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
+++ b/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
@@ -832,7 +832,7 @@ bool WebAssemblyLowerEmscriptenEHSjLj::runOnModule(Module &M) {
   Function *LongjmpF = M.getFunction("longjmp");
 
   // In some platforms _setjmp and _longjmp are used instead. Change these to
-  // use setjmp/longjmp instead, because we laster detect these functions by
+  // use setjmp/longjmp instead, because we later detect these functions by
   // their names.
   Function *SetjmpF2 = M.getFunction("_setjmp");
   Function *LongjmpF2 = M.getFunction("_longjmp");


        


More information about the llvm-commits mailing list