diff options
Diffstat (limited to 'test/dot_s/symbolic-offset.wast')
-rw-r--r-- | test/dot_s/symbolic-offset.wast | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/test/dot_s/symbolic-offset.wast b/test/dot_s/symbolic-offset.wast index 462b7971a..cd2205cee 100644 --- a/test/dot_s/symbolic-offset.wast +++ b/test/dot_s/symbolic-offset.wast @@ -4,11 +4,9 @@ (export "memory" (memory $0)) (export "f" (func $f)) (func $f (param $0 i32) (param $1 i32) - (drop - (i32.store offset=16 - (get_local $0) - (get_local $1) - ) + (i32.store offset=16 + (get_local $0) + (get_local $1) ) (return) ) |