[llvm] [LLVM][NewPM] Add a C API for setting the PassBuilder AA pipeline. (PR #102482)
Arthur Eubanks via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 12 12:58:53 PDT 2024
================
@@ -28,11 +29,14 @@ class LLVMPassBuilderOptions {
public:
explicit LLVMPassBuilderOptions(
bool DebugLogging = false, bool VerifyEach = false,
+ const char *AAPipeline = nullptr,
----------------
aeubanks wrote:
`LLVMPassBuilderOptions` is never constructed with params. the constructor shouldn't take any arguments.
I'll do this in a followup patch
https://github.com/llvm/llvm-project/pull/102482
More information about the llvm-commits
mailing list