diff options
author | Sam Clegg <sbc@chromium.org> | 2023-04-20 14:12:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-20 14:12:34 -0700 |
commit | c7247a2478f51d0db4496e20385934c50c370c10 (patch) | |
tree | 757e1a1361fe6d6a7fb7138a033e994db9e80d36 /include/wabt/binary-reader.h | |
parent | ad5f1385fa7afe29e98d69b6167132162675228f (diff) | |
download | wabt-c7247a2478f51d0db4496e20385934c50c370c10.tar.gz wabt-c7247a2478f51d0db4496e20385934c50c370c10.tar.bz2 wabt-c7247a2478f51d0db4496e20385934c50c370c10.zip |
wasm-objdump: Include function names in "init functions" subsection (#2202)
Diffstat (limited to 'include/wabt/binary-reader.h')
-rw-r--r-- | include/wabt/binary-reader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wabt/binary-reader.h b/include/wabt/binary-reader.h index 4f6f5796..825d562c 100644 --- a/include/wabt/binary-reader.h +++ b/include/wabt/binary-reader.h @@ -460,7 +460,7 @@ class BinaryReaderDelegate { Address alignment_log2, uint32_t flags) = 0; virtual Result OnInitFunctionCount(Index count) = 0; - virtual Result OnInitFunction(uint32_t priority, Index function_index) = 0; + virtual Result OnInitFunction(uint32_t priority, Index symbol_index) = 0; virtual Result OnComdatCount(Index count) = 0; virtual Result OnComdatBegin(std::string_view name, uint32_t flags, |