summaryrefslogtreecommitdiff
path: root/include/wabt/interp/interp.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/wabt/interp/interp.h')
-rw-r--r--include/wabt/interp/interp.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wabt/interp/interp.h b/include/wabt/interp/interp.h
index 821a5391..9ce7b181 100644
--- a/include/wabt/interp/interp.h
+++ b/include/wabt/interp/interp.h
@@ -296,6 +296,7 @@ struct LocalDesc {
struct CatchDesc {
Index tag_index;
u32 offset;
+ bool ref = false;
};
// Handlers for a catch-less `try` or `try-catch` block are included in the
@@ -314,6 +315,7 @@ struct HandlerDesc {
// Local stack heights at the handler site that need to be restored.
u32 values;
u32 exceptions;
+ bool catch_all_ref = false;
};
struct FuncDesc {