[PATCH] D69594: Warn when an output section name is longer than 8 characters
Fangrui Song via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 29 19:26:44 PDT 2019
MaskRay added inline comments.
================
Comment at: lld/COFF/Driver.cpp:1198
+ // Don't warn about long section names, such as .debug_info, for mingw.
+ if (config->mingw) {
+ config->warnLongSectionNames = false;
----------------
Delete `{}`
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D69594/new/
https://reviews.llvm.org/D69594
More information about the llvm-commits
mailing list