diff options
author | Shravan Narayan <shravanrn@gmail.com> | 2023-04-30 15:55:21 -0400 |
---|---|---|
committer | Shravan Narayan <shravanrn@gmail.com> | 2023-05-01 20:12:44 -0400 |
commit | 4d9a1475a744ab78e7fbc3dc60bf7038dad6119d (patch) | |
tree | 72612709becebb6865bfeee9baf948509cd230f7 /wasm2c | |
parent | fb31c1a24c84b599fbad813539407d8d3a3e9cb0 (diff) | |
download | wabt-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.c | 2 |
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; |