summaryrefslogtreecommitdiff
path: root/src/binary-reader-objdump.h
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2021-06-22 13:06:29 -0700
committerGitHub <noreply@github.com>2021-06-22 13:06:29 -0700
commit950042585626bc639c4b330bd47c7b9be4e11bac (patch)
tree686779003eb850260a004678e5d5663ba19d0c43 /src/binary-reader-objdump.h
parentc6cd63316ac53208900cda4d1089a22618b85256 (diff)
downloadwabt-950042585626bc639c4b330bd47c7b9be4e11bac.tar.gz
wabt-950042585626bc639c4b330bd47c7b9be4e11bac.tar.bz2
wabt-950042585626bc639c4b330bd47c7b9be4e11bac.zip
[EH] Replace event with tag (#1678)
We recently decided to change 'event' to 'tag', and '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 'src/binary-reader-objdump.h')
-rw-r--r--src/binary-reader-objdump.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/binary-reader-objdump.h b/src/binary-reader-objdump.h
index b2874dac..a15664c5 100644
--- a/src/binary-reader-objdump.h
+++ b/src/binary-reader-objdump.h
@@ -71,7 +71,7 @@ struct ObjdumpState {
ObjdumpNames function_names;
ObjdumpNames global_names;
ObjdumpNames section_names;
- ObjdumpNames event_names;
+ ObjdumpNames tag_names;
ObjdumpNames segment_names;
ObjdumpNames table_names;
std::vector<ObjdumpSymbol> symtab;