summaryrefslogtreecommitdiff
path: root/test/example/module-splitting.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/example/module-splitting.cpp')
-rw-r--r--test/example/module-splitting.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/example/module-splitting.cpp b/test/example/module-splitting.cpp
index a379717f1..bbe57a657 100644
--- a/test/example/module-splitting.cpp
+++ b/test/example/module-splitting.cpp
@@ -76,7 +76,7 @@ int main() {
(memory $mem (shared 3 42))
(table $tab 3 42 funcref)
(global $glob (mut i32) (i32.const 7))
- (tag $e (attr 0) (param i32))
+ (tag $e (param i32))
))");
// Imported global stuff
@@ -85,7 +85,7 @@ int main() {
(import "env" "mem" (memory $mem (shared 3 42)))
(import "env" "tab" (table $tab 3 42 funcref))
(import "env" "glob" (global $glob (mut i32)))
- (import "env" "e" (tag $e (attr 0) (param i32)))
+ (import "env" "e" (tag $e (param i32)))
))");
// Exported global stuff
@@ -94,7 +94,7 @@ int main() {
(memory $mem (shared 3 42))
(table $tab 3 42 funcref)
(global $glob (mut i32) (i32.const 7))
- (tag $e (attr 0) (param i32))
+ (tag $e (param i32))
(export "mem" (memory $mem))
(export "tab" (table $tab))
(export "glob" (global $glob))