[llvm] r334899 - [WebAssembly] Simple comment fix. NFC.

Heejin Ahn via llvm-commits llvm-commits at lists.llvm.org
Sat Jun 16 17:37:56 PDT 2018


Author: aheejin
Date: Sat Jun 16 17:37:56 2018
New Revision: 334899

URL: http://llvm.org/viewvc/llvm-project?rev=334899&view=rev
Log:
[WebAssembly] Simple comment fix. NFC.


Modified:
    llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td

Modified: llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td?rev=334899&r1=334898&r2=334899&view=diff
==============================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td (original)
+++ llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td Sat Jun 16 17:37:56 2018
@@ -153,7 +153,7 @@ def CATCH_ALL : I<(outs), (ins), [], "ca
 
 // Pseudo instructions: cleanupret / catchret
 // They are not return instructions in wasm, but setting 'isReturn' to true as
-// in X86 is necessary for computing funclet membership.
+// in X86 is necessary for computing EH scope membership.
 let isTerminator = 1, hasSideEffects = 1, isBarrier = 1, hasCtrlDep = 1,
     isCodeGenOnly = 1, isReturn = 1 in {
   def CLEANUPRET : I<(outs), (ins), [(cleanupret)], "", 0>;




More information about the llvm-commits mailing list