diff options
author | Jérôme Vouillon <jerome.vouillon@gmail.com> | 2023-08-23 22:47:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-23 13:47:33 -0700 |
commit | 6dad9fb15130515bc7eed60270263f3d8269b60f (patch) | |
tree | 3c5f9982b014d870a3a87d19fa63cf015c7197d6 /test/lit/array-init-static.wast | |
parent | f6867f9a485c125dcd2914f58e2636f01879db7b (diff) | |
download | binaryen-6dad9fb15130515bc7eed60270263f3d8269b60f.tar.gz binaryen-6dad9fb15130515bc7eed60270263f3d8269b60f.tar.bz2 binaryen-6dad9fb15130515bc7eed60270263f3d8269b60f.zip |
Use the standard syntax for ref.cast, ref.test and array.new_fixed (#5894)
* Update text output for `ref.cast` and `ref.test`
* Update text output for `array.new_fixed`
* Update tests with new syntax for `ref.cast` and `ref.test`
* Update tests with new `array.new_fixed` syntax
Diffstat (limited to 'test/lit/array-init-static.wast')
-rw-r--r-- | test/lit/array-init-static.wast | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit/array-init-static.wast b/test/lit/array-init-static.wast index 266a874a6..41915d1ed 100644 --- a/test/lit/array-init-static.wast +++ b/test/lit/array-init-static.wast @@ -12,7 +12,7 @@ (type $array (array i32)) ;; CHECK: (func $test (type $none_=>_none) ;; CHECK-NEXT: (drop - ;; CHECK-NEXT: (array.new_fixed $array + ;; CHECK-NEXT: (array.new_fixed $array 2 ;; CHECK-NEXT: (i32.const 0) ;; CHECK-NEXT: (i32.const 1) ;; CHECK-NEXT: ) |