diff options
Diffstat (limited to 'test/parse/expr/bad-compare-one-expr.txt')
-rw-r--r-- | test/parse/expr/bad-compare-one-expr.txt | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/test/parse/expr/bad-compare-one-expr.txt b/test/parse/expr/bad-compare-one-expr.txt index 1cd9b798..8964247a 100644 --- a/test/parse/expr/bad-compare-one-expr.txt +++ b/test/parse/expr/bad-compare-one-expr.txt @@ -1,10 +1,12 @@ ;;; ERROR: 1 -(module (func (i32.lt_s (i32.const 0)))) +(module (func + i32.const 0 + i32.lt_s)) (;; STDERR ;;; -parse/expr/bad-compare-one-expr.txt:2:16: type stack size too small at i32.lt_s. got 1, expected at least 2 -(module (func (i32.lt_s (i32.const 0)))) - ^^^^^^^^ +parse/expr/bad-compare-one-expr.txt:4:11: type stack size too small at i32.lt_s. got 1, expected at least 2 + i32.lt_s)) + ^^^^^^^^ parse/expr/bad-compare-one-expr.txt:2:9: type stack at end of function is 2. expected 0 -(module (func (i32.lt_s (i32.const 0)))) - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +(module (func + ^^^^^ ;;; STDERR ;;) |