[PATCH] D96872: [WebAssembly][lld] --importTable flag only imports table if needed
Sam Clegg via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 17 08:50:17 PST 2021
sbc100 added inline comments.
================
Comment at: lld/wasm/Driver.cpp:834
+ return cast_or_null<TableSymbol>(existing);
} else if ((existing && existing->isLive()) || config->exportTable) {
// A defined table is required. Either because the user request an exported
----------------
I'm seeing `Driver.cpp:802:21: warning: unused function 'createUndefinedIndirectFunctionTable' [-Wunused-function]
static TableSymbol *createUndefinedIndirectFunctionTable(StringRef name) {`
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D96872/new/
https://reviews.llvm.org/D96872
More information about the llvm-commits
mailing list