diff options
Diffstat (limited to 'test/ctor-eval/basics-flatten.wast')
-rw-r--r-- | test/ctor-eval/basics-flatten.wast | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/ctor-eval/basics-flatten.wast b/test/ctor-eval/basics-flatten.wast index da8b76163..07078bfc3 100644 --- a/test/ctor-eval/basics-flatten.wast +++ b/test/ctor-eval/basics-flatten.wast @@ -17,8 +17,10 @@ ) (func $test2 (drop (i32.load (i32.const 12))) ;; a safe load - (drop (i32.load16 (i32.const 12))) - (drop (i32.load8 (i32.const 12))) + (drop (i32.load16_s (i32.const 12))) + (drop (i32.load8_s (i32.const 12))) + (drop (i32.load16_u (i32.const 12))) + (drop (i32.load8_u (i32.const 12))) ) (func $test3 (i32.store (i32.const 12) (i32.const 115)) ;; a safe store, should alter memory |