summaryrefslogtreecommitdiff
path: root/test/mutable-global.wast.fromBinary.noDebugInfo
diff options
context:
space:
mode:
Diffstat (limited to 'test/mutable-global.wast.fromBinary.noDebugInfo')
-rw-r--r--test/mutable-global.wast.fromBinary.noDebugInfo13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/mutable-global.wast.fromBinary.noDebugInfo b/test/mutable-global.wast.fromBinary.noDebugInfo
new file mode 100644
index 000000000..aba18cdc4
--- /dev/null
+++ b/test/mutable-global.wast.fromBinary.noDebugInfo
@@ -0,0 +1,13 @@
+(module
+ (type $0 (func))
+ (import "env" "global-mut" (global $gimport$0 (mut i32)))
+ (func $0 (; 0 ;) (type $0)
+ (set_global $gimport$0
+ (i32.add
+ (get_global $gimport$0)
+ (i32.const 1)
+ )
+ )
+ )
+)
+