diff options
Diffstat (limited to 'test/parse/expr')
-rw-r--r-- | test/parse/expr/atomic-align.txt | 2 | ||||
-rw-r--r-- | test/parse/expr/atomic.txt | 2 | ||||
-rw-r--r-- | test/parse/expr/bad-atomic-unnatural-align.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/parse/expr/atomic-align.txt b/test/parse/expr/atomic-align.txt index 10dfb8d6..65ab99ab 100644 --- a/test/parse/expr/atomic-align.txt +++ b/test/parse/expr/atomic-align.txt @@ -1,6 +1,6 @@ ;;; FLAGS: --enable-threads (module - (memory (shared 1 1)) + (memory 1 1 shared) (func i32.const 0 i32.const 0 wake align=4 drop i32.const 0 i32.const 0 i64.const 0 i32.wait align=4 drop diff --git a/test/parse/expr/atomic.txt b/test/parse/expr/atomic.txt index 78bac9f4..bf683a1c 100644 --- a/test/parse/expr/atomic.txt +++ b/test/parse/expr/atomic.txt @@ -1,6 +1,6 @@ ;;; FLAGS: --enable-threads (module - (memory (shared 1 1)) + (memory 1 1 shared) (func i32.const 0 i32.const 0 wake drop i32.const 0 i32.const 0 i64.const 0 i32.wait drop diff --git a/test/parse/expr/bad-atomic-unnatural-align.txt b/test/parse/expr/bad-atomic-unnatural-align.txt index 2a29dc65..e00ba1fa 100644 --- a/test/parse/expr/bad-atomic-unnatural-align.txt +++ b/test/parse/expr/bad-atomic-unnatural-align.txt @@ -1,7 +1,7 @@ ;;; ERROR: 1 ;;; FLAGS: --enable-threads (module - (memory (shared 1 1)) + (memory 1 1 shared) (func i32.const 0 i32.const 0 wake align=8 drop i32.const 0 i32.const 0 i64.const 0 i32.wait align=8 drop |