[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:
Heejin Ahn 2019-06-25 23:04:12 +00:00
parent a1d688dfdd
commit 65d8d6357b
1 changed files with 0 additions and 4 deletions

View File

@ -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;