[PATCH] D50729: [WebAssembly] Don't compress LEBs by default
Rui Ueyama via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Aug 19 21:56:01 PDT 2018
ruiu added inline comments.
================
Comment at: lld/trunk/wasm/Driver.cpp:398
Config->StripDebug = Args.hasArg(OPT_strip_debug);
+ Config->CompressRelocTargets = Args.hasArg(OPT_compress_relocations);
Config->StackFirst = Args.hasArg(OPT_stack_first);
----------------
All `Config` members that correspond to command line options have the same name as the command line options, so this should be `Config->CompressRelocations`.
Repository:
rL LLVM
https://reviews.llvm.org/D50729
More information about the llvm-commits
mailing list