-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[AIX][TOC] Add -mtocdata/-mno-tocdata options on AIX #67999
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
d7536fb
36f6e96
c76ee5e
92ee55d
4dd4e04
05d50fa
4a4a5a9
fdd2d6a
c95a9cf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -404,6 +404,15 @@ class CodeGenOptions : public CodeGenOptionsBase { | |
/// List of pass builder callbacks. | ||
std::vector<std::function<void(llvm::PassBuilder &)>> PassBuilderCallbacks; | ||
|
||
/// List of global variables explicitly specified by the user as toc-data. | ||
std::vector<std::string> TocDataVarsUserSpecified; | ||
|
||
/// List of global variables that over-ride the toc-data default. | ||
std::vector<std::string> NoTocDataVars; | ||
|
||
/// Flag for all global variables to be treated as toc-data. | ||
bool AllTocData; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The uninitialized There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thank you! |
||
|
||
/// Path to allowlist file specifying which objects | ||
/// (files, functions) should exclusively be instrumented | ||
/// by sanitizer coverage pass. | ||
|
Uh oh!
There was an error while loading. Please reload this page.