diff options
Diffstat (limited to 'test/spec/exception-handling.wast')
-rw-r--r-- | test/spec/exception-handling.wast | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/spec/exception-handling.wast b/test/spec/exception-handling.wast index d09c21806..1b7907474 100644 --- a/test/spec/exception-handling.wast +++ b/test/spec/exception-handling.wast @@ -1,8 +1,8 @@ (module - (tag $e-v (attr 0)) - (tag $e-i32 (attr 0) (param i32)) - (tag $e-f32 (attr 0) (param f32)) - (tag $e-i32-f32 (attr 0) (param i32 f32)) + (tag $e-v) + (tag $e-i32 (param i32)) + (tag $e-f32 (param f32)) + (tag $e-i32-f32 (param i32 f32)) (func $throw_single_value (export "throw_single_value") (throw $e-i32 (i32.const 5)) @@ -246,7 +246,7 @@ (assert_invalid (module - (tag $e-i32 (attr 0) (param i32)) + (tag $e-i32 (param i32)) (func $f0 (throw $e-i32 (f32.const 0)) ) @@ -256,7 +256,7 @@ (assert_invalid (module - (tag $e-i32 (attr 0) (param i32 f32)) + (tag $e-i32 (param i32 f32)) (func $f0 (throw $e-i32 (f32.const 0)) ) |