1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

[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 7f2ade3bc4
commit 5ea507867b

View File

@ -433,10 +433,6 @@ public:
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;