diff options
Diffstat (limited to 'test/mutable-global.wast.fromBinary')
-rw-r--r-- | test/mutable-global.wast.fromBinary | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/test/mutable-global.wast.fromBinary b/test/mutable-global.wast.fromBinary deleted file mode 100644 index c115bbd4c..000000000 --- a/test/mutable-global.wast.fromBinary +++ /dev/null @@ -1,13 +0,0 @@ -(module - (type $0 (func)) - (import "env" "global-mut" (global $global-mut (mut i32))) - (func $foo (type $0) - (global.set $global-mut - (i32.add - (global.get $global-mut) - (i32.const 1) - ) - ) - ) -) - |