From 9fc276298b36080658236f0bc93d94cdf774492c Mon Sep 17 00:00:00 2001 From: Heejin Ahn Date: Sat, 19 Jun 2021 23:06:27 -0700 Subject: Remove (attr 0) from tag text format (#3946) This attribute is always 0 and reserved for future use. In Binayren's unofficial text format we were writing this field as `(attr 0)`, but we have recently come to the conclusion that this is not necessary. Relevant discussion: https://github.com/WebAssembly/exception-handling/pull/160#discussion_r653254680 --- test/exception-handling.wast.fromBinary | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/exception-handling.wast.fromBinary') diff --git a/test/exception-handling.wast.fromBinary b/test/exception-handling.wast.fromBinary index e50d18f3a..d37f48a23 100644 --- a/test/exception-handling.wast.fromBinary +++ b/test/exception-handling.wast.fromBinary @@ -3,10 +3,10 @@ (type $i32_=>_none (func (param i32))) (type $i64_=>_none (func (param i64))) (type $i32_i64_=>_none (func (param i32 i64))) - (tag $tag$0 (attr 0) (param i32)) - (tag $tag$1 (attr 0) (param i64)) - (tag $tag$2 (attr 0) (param i32 i64)) - (tag $tag$3 (attr 0) (param)) + (tag $tag$0 (param i32)) + (tag $tag$1 (param i64)) + (tag $tag$2 (param i32 i64)) + (tag $tag$3 (param)) (func $foo (nop) ) -- cgit v1.2.3