diff options
Diffstat (limited to 'test/lit/ctor-eval')
-rw-r--r-- | test/lit/ctor-eval/data_drop.wast | 6 | ||||
-rw-r--r-- | test/lit/ctor-eval/table.wat | 2 | ||||
-rw-r--r-- | test/lit/ctor-eval/v128.wast | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/test/lit/ctor-eval/data_drop.wast b/test/lit/ctor-eval/data_drop.wast index eeec5f165..4a1fcae1a 100644 --- a/test/lit/ctor-eval/data_drop.wast +++ b/test/lit/ctor-eval/data_drop.wast @@ -23,9 +23,9 @@ (data.drop 1) ) ) -;; CHECK: (data (i32.const 0) "__________") +;; CHECK: (data $0 (i32.const 0) "__________") -;; CHECK: (data (i32.const 20) "__________") +;; CHECK: (data $1 (i32.const 20) "__________") ;; CHECK: (export "test" (func $0)) @@ -34,5 +34,5 @@ ;; CHECK-NEXT: (i32.const 4) ;; CHECK-NEXT: (i32.const 100) ;; CHECK-NEXT: ) -;; CHECK-NEXT: (data.drop 1) +;; CHECK-NEXT: (data.drop $1) ;; CHECK-NEXT: ) diff --git a/test/lit/ctor-eval/table.wat b/test/lit/ctor-eval/table.wat index 055de67b0..76e9a44af 100644 --- a/test/lit/ctor-eval/table.wat +++ b/test/lit/ctor-eval/table.wat @@ -10,7 +10,7 @@ (elem (i32.const 0) $nop) - ;; CHECK: (elem (i32.const 0) $nop) + ;; CHECK: (elem $0 (i32.const 0) $nop) ;; CHECK: (elem declare func $trap) diff --git a/test/lit/ctor-eval/v128.wast b/test/lit/ctor-eval/v128.wast index 1d6cf6947..b3b8c98b3 100644 --- a/test/lit/ctor-eval/v128.wast +++ b/test/lit/ctor-eval/v128.wast @@ -9,7 +9,7 @@ ;; CHECK: (memory $0 (shared 16 17)) (memory $0 (shared 16 17)) - ;; CHECK: (data (i32.const 23) "\e0\ff\c0N\8e\00\00\fe\01\00\12\81\85\fd\ff\90") + ;; CHECK: (data $0 (i32.const 23) "\e0\ff\c0N\8e\00\00\fe\01\00\12\81\85\fd\ff\90") ;; CHECK: (export "v128" (func $v128_0)) (export "v128" (func $v128)) |