summaryrefslogtreecommitdiff
path: root/src/wasm/wasm-stack.cpp
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2024-09-04 16:12:58 -0700
committerGitHub <noreply@github.com>2024-09-04 16:12:58 -0700
commit9790ca3ce809cb6bf26445babcbb49434c8ac71b (patch)
tree8e4a63464558462ebb12a9a3a366a8c44f469ad3 /src/wasm/wasm-stack.cpp
parent852baadb27c68a56080ca88769d7e272c4e90235 (diff)
downloadbinaryen-9790ca3ce809cb6bf26445babcbb49434c8ac71b.tar.gz
binaryen-9790ca3ce809cb6bf26445babcbb49434c8ac71b.tar.bz2
binaryen-9790ca3ce809cb6bf26445babcbb49434c8ac71b.zip
[EH] Rename Catch(All)_P3 to Catch(All)_Legacy (NFC) (#6901)
This renames `Catch(All)_P3` enum to denote the old Phase 3 `catch(_all)` instructions to `Catch(All)_Legacy`, which sounds clearer. This is also to be consistent with https://github.com/llvm/llvm-project/pull/107187.
Diffstat (limited to 'src/wasm/wasm-stack.cpp')
-rw-r--r--src/wasm/wasm-stack.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wasm/wasm-stack.cpp b/src/wasm/wasm-stack.cpp
index ac79d0135..a1446c2de 100644
--- a/src/wasm/wasm-stack.cpp
+++ b/src/wasm/wasm-stack.cpp
@@ -2142,7 +2142,7 @@ void BinaryInstWriter::emitCatch(Try* curr, Index i) {
if (func && !sourceMap) {
parent.writeExtraDebugLocation(curr, func, i);
}
- o << int8_t(BinaryConsts::Catch_P3)
+ o << int8_t(BinaryConsts::Catch_Legacy)
<< U32LEB(parent.getTagIndex(curr->catchTags[i]));
}
@@ -2150,7 +2150,7 @@ void BinaryInstWriter::emitCatchAll(Try* curr) {
if (func && !sourceMap) {
parent.writeExtraDebugLocation(curr, func, curr->catchBodies.size());
}
- o << int8_t(BinaryConsts::CatchAll_P3);
+ o << int8_t(BinaryConsts::CatchAll_Legacy);
}
void BinaryInstWriter::emitDelegate(Try* curr) {