[llvm] [ASan] AddressSanitizerPass constructor should honor the AsanCtorKind argument (PR #72330)
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 15 13:35:25 PST 2023
================
@@ -1149,7 +1151,7 @@ AddressSanitizerPass::AddressSanitizerPass(
AsanCtorKind ConstructorKind)
: Options(Options), UseGlobalGC(UseGlobalGC),
UseOdrIndicator(UseOdrIndicator), DestructorKind(DestructorKind),
- ConstructorKind(ClConstructorKind) {}
+ ConstructorKind(ConstructorKind) {}
----------------
vitalybuka wrote:
I see, It's forwarded there any way
https://github.com/llvm/llvm-project/pull/72330
More information about the llvm-commits
mailing list