[PATCH] D63737: [WebAssembly] Remove catch_all from AsmParser
Heejin Ahn via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 25 16:04:51 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL364360: [WebAssembly] Remove catch_all from AsmParser (authored by aheejin, committed by ).
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D63737/new/
https://reviews.llvm.org/D63737
Files:
llvm/trunk/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
Index: llvm/trunk/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
===================================================================
--- llvm/trunk/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
+++ llvm/trunk/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
@@ -433,10 +433,6 @@
if (pop(BaseName, Try))
return true;
push(Try);
- } else if (BaseName == "catch_all") {
- if (pop(BaseName, Try))
- return true;
- push(Try);
} else if (BaseName == "end_if") {
if (pop(BaseName, If, Else))
return true;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D63737.206544.patch
Type: text/x-patch
Size: 594 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190625/61e34446/attachment.bin>
More information about the llvm-commits
mailing list