[PATCH] D92398: [AIX][XCOFF] emit traceback table for function in aix
Digger via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 4 14:01:12 PST 2020
DiggerLin added inline comments.
================
Comment at: llvm/include/llvm/Target/TargetOptions.h:133
FunctionSections(false), DataSections(false),
- IgnoreXCOFFVisibility(false), UniqueSectionNames(true),
- UniqueBasicBlockSectionNames(false), TrapUnreachable(false),
- NoTrapAfterNoreturn(false), TLSSize(0), EmulatedTLS(false),
- ExplicitEmulatedTLS(false), EnableIPRA(false),
+ IgnoreXCOFFVisibility(false), XCOFFTracebackTable(false),
+ UniqueSectionNames(true), UniqueBasicBlockSectionNames(false),
----------------
jasonliu wrote:
> Is this the wrong default? By default llc should emit traceback table for XCOFF object file.
if this the default should be emit traceback table. why we need the option -xcoff-traceback-table ? instead we need -disable-xcoff-traceback-table.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D92398/new/
https://reviews.llvm.org/D92398
More information about the llvm-commits
mailing list