diff options
author | Heejin Ahn <aheejin@gmail.com> | 2021-06-18 14:20:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-18 14:20:03 -0700 |
commit | 28e88b9f993a2e45662fde0b10920aa22e7b1b7f (patch) | |
tree | 77bbd5f1dd1bfcb089b12f6fa9fcf828c135c099 /test/passes/dwarf_with_exceptions.bin.txt | |
parent | 97e277c51218778d1d76fd59fed3b4ca7756382e (diff) | |
download | binaryen-28e88b9f993a2e45662fde0b10920aa22e7b1b7f.tar.gz binaryen-28e88b9f993a2e45662fde0b10920aa22e7b1b7f.tar.bz2 binaryen-28e88b9f993a2e45662fde0b10920aa22e7b1b7f.zip |
[EH] Replace event with tag (#3937)
We recently decided to change 'event' to 'tag', and to 'event section'
to 'tag section', out of the rationale that the section contains a
generalized tag that references a type, which may be used for something
other than exceptions, and the name 'event' can be confusing in the web
context.
See
- https://github.com/WebAssembly/exception-handling/issues/159#issuecomment-857910130
- https://github.com/WebAssembly/exception-handling/pull/161
Diffstat (limited to 'test/passes/dwarf_with_exceptions.bin.txt')
-rw-r--r-- | test/passes/dwarf_with_exceptions.bin.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/passes/dwarf_with_exceptions.bin.txt b/test/passes/dwarf_with_exceptions.bin.txt index a08ecf9e5..ebd6be03d 100644 --- a/test/passes/dwarf_with_exceptions.bin.txt +++ b/test/passes/dwarf_with_exceptions.bin.txt @@ -8,7 +8,7 @@ (import "env" "_ZSt9terminatev" (func $std::terminate\28\29)) (global $__stack_pointer (mut i32) (i32.const 66560)) (memory $0 2) - (event $event$0 (attr 0) (param i32)) + (tag $tag$0 (attr 0) (param i32)) (export "memory" (memory $0)) (func $__wasm_call_ctors ) @@ -27,7 +27,7 @@ (call $foo\28\29) ) ;; code offset: 0x18 - (catch $event$0 + (catch $tag$0 ;; code offset: 0x1e (local.set $1 (pop i32) @@ -65,7 +65,7 @@ (call $__cxa_end_catch) ) ;; code offset: 0x4a - (catch $event$0 + (catch $tag$0 ;; code offset: 0x50 (local.set $1 (pop i32) @@ -429,7 +429,7 @@ file_names[ 1]: (import "env" "_ZSt9terminatev" (func $std::terminate\28\29)) (global $__stack_pointer (mut i32) (i32.const 66560)) (memory $0 2) - (event $event$0 (attr 0) (param i32)) + (tag $tag$0 (attr 0) (param i32)) (export "memory" (memory $0)) (func $__wasm_call_ctors ) @@ -448,7 +448,7 @@ file_names[ 1]: (call $foo\28\29) ) ;; code offset: 0x12 - (catch $event$0 + (catch $tag$0 ;; code offset: 0x14 (local.set $1 (pop i32) @@ -486,7 +486,7 @@ file_names[ 1]: (call $__cxa_end_catch) ) ;; code offset: 0x2c - (catch $event$0 + (catch $tag$0 ;; code offset: 0x2e (local.set $1 (pop i32) |