diff options
Diffstat (limited to 'test/spec-wasm2c-prefix.c')
-rw-r--r-- | test/spec-wasm2c-prefix.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/spec-wasm2c-prefix.c b/test/spec-wasm2c-prefix.c index 897872b4..f28339e1 100644 --- a/test/spec-wasm2c-prefix.c +++ b/test/spec-wasm2c-prefix.c @@ -202,6 +202,7 @@ static void spectest_print_f64_f64(double d1, double d2) { static wasm_rt_table_t spectest_table; static wasm_rt_memory_t spectest_memory; static uint32_t spectest_global_i32 = 666; +static uint64_t spectest_global_i64 = 666l; void (*Z_spectestZ_printZ_vv)(void) = &spectest_print; void (*Z_spectestZ_print_i32Z_vi)(uint32_t) = &spectest_print_i32; @@ -214,6 +215,7 @@ void (*Z_spectestZ_print_f64_f64Z_vdd)(double, wasm_rt_table_t* Z_spectestZ_table = &spectest_table; wasm_rt_memory_t* Z_spectestZ_memory = &spectest_memory; uint32_t* Z_spectestZ_global_i32Z_i = &spectest_global_i32; +uint64_t* Z_spectestZ_global_i64Z_j = &spectest_global_i64; static void init_spectest_module(void) { wasm_rt_allocate_memory(&spectest_memory, 1, 2); |