forked from OSchip/llvm-project
[WebAssembly] Remove catch_all from AsmParser
Summary: `catch_all` is from the first version of EH proposal and now has been removed. There were no tests covering this, and thus no tests to remove or fix. Reviewers: aardappel Subscribers: dschuff, sbc100, jgravelle-google, sunfish, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D63737 llvm-svn: 364360
This commit is contained in:
parent
a1d688dfdd
commit
65d8d6357b
|
@ -433,10 +433,6 @@ public:
|
||||||
if (pop(BaseName, Try))
|
if (pop(BaseName, Try))
|
||||||
return true;
|
return true;
|
||||||
push(Try);
|
push(Try);
|
||||||
} else if (BaseName == "catch_all") {
|
|
||||||
if (pop(BaseName, Try))
|
|
||||||
return true;
|
|
||||||
push(Try);
|
|
||||||
} else if (BaseName == "end_if") {
|
} else if (BaseName == "end_if") {
|
||||||
if (pop(BaseName, If, Else))
|
if (pop(BaseName, If, Else))
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue