diff options
author | Shravan Narayan <shravanrn@gmail.com> | 2024-10-15 00:29:43 -0500 |
---|---|---|
committer | Shravan Narayan <shravanrn@gmail.com> | 2024-10-28 16:17:12 -0500 |
commit | 1af95898e523a92f962c100db82a55a1a80632e7 (patch) | |
tree | 63d218a89fb3665ad94e271608ca0d5d2c1976bf /wasm2c/wasm-rt-impl.h | |
parent | b8d82acf6189a563830b0b76d89c4640c6310b33 (diff) | |
download | wabt-1af95898e523a92f962c100db82a55a1a80632e7.tar.gz wabt-1af95898e523a92f962c100db82a55a1a80632e7.tar.bz2 wabt-1af95898e523a92f962c100db82a55a1a80632e7.zip |
wasm2c: Cleanup TLS: check for __thread and declare TLS vars only when needed
Diffstat (limited to 'wasm2c/wasm-rt-impl.h')
-rw-r--r-- | wasm2c/wasm-rt-impl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wasm2c/wasm-rt-impl.h b/wasm2c/wasm-rt-impl.h index aa6f46d9..ed46b097 100644 --- a/wasm2c/wasm-rt-impl.h +++ b/wasm2c/wasm-rt-impl.h @@ -27,8 +27,10 @@ extern "C" { #endif +#ifndef WASM_RT_TRAP_HANDLER /** A setjmp buffer used for handling traps. */ extern WASM_RT_THREAD_LOCAL wasm_rt_jmp_buf g_wasm_rt_jmp_buf; +#endif #if WASM_RT_STACK_DEPTH_COUNT /** Saved call stack depth that will be restored in case a trap occurs. */ |