summaryrefslogtreecommitdiff
path: root/wasm2c
diff options
context:
space:
mode:
authorShravan Narayan <shravanrn@gmail.com>2023-04-30 15:55:21 -0400
committerShravan Narayan <shravanrn@gmail.com>2023-05-01 20:12:44 -0400
commit4d9a1475a744ab78e7fbc3dc60bf7038dad6119d (patch)
tree72612709becebb6865bfeee9baf948509cd230f7 /wasm2c
parentfb31c1a24c84b599fbad813539407d8d3a3e9cb0 (diff)
downloadwabt-4d9a1475a744ab78e7fbc3dc60bf7038dad6119d.tar.gz
wabt-4d9a1475a744ab78e7fbc3dc60bf7038dad6119d.tar.bz2
wabt-4d9a1475a744ab78e7fbc3dc60bf7038dad6119d.zip
wasm2c: reduce the max exceptions size
Diffstat (limited to 'wasm2c')
-rw-r--r--wasm2c/wasm-rt-impl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wasm2c/wasm-rt-impl.c b/wasm2c/wasm-rt-impl.c
index 0e4d170a..788fe1d7 100644
--- a/wasm2c/wasm-rt-impl.c
+++ b/wasm2c/wasm-rt-impl.c
@@ -42,7 +42,7 @@
#endif
#define PAGE_SIZE 65536
-#define MAX_EXCEPTION_SIZE PAGE_SIZE
+#define MAX_EXCEPTION_SIZE 256
#if WASM_RT_INSTALL_SIGNAL_HANDLER
static bool g_signal_handler_installed = false;