File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
include/llvm/Transforms/Instrumentation
lib/Transforms/Instrumentation Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ struct AddressSanitizerOptions {
36
36
class AddressSanitizerPass : public PassInfoMixin <AddressSanitizerPass> {
37
37
public:
38
38
AddressSanitizerPass (const AddressSanitizerOptions &Options,
39
- bool UseGlobalGC = true , bool UseOdrIndicator = true ,
39
+ bool UseGlobalGC = true , bool UseOdrIndicator = false ,
40
40
AsanDtorKind DestructorKind = AsanDtorKind::Global,
41
41
AsanCtorKind ConstructorKind = AsanCtorKind::Global);
42
42
PreservedAnalyses run (Module &M, ModuleAnalysisManager &AM);
Original file line number Diff line number Diff line change @@ -774,7 +774,7 @@ class ModuleAddressSanitizer {
774
774
public:
775
775
ModuleAddressSanitizer (Module &M, bool CompileKernel = false ,
776
776
bool Recover = false , bool UseGlobalsGC = true ,
777
- bool UseOdrIndicator = true ,
777
+ bool UseOdrIndicator = false ,
778
778
AsanDtorKind DestructorKind = AsanDtorKind::Global,
779
779
AsanCtorKind ConstructorKind = AsanCtorKind::Global)
780
780
: CompileKernel(ClEnableKasan.getNumOccurrences() > 0 ? ClEnableKasan
You can’t perform that action at this time.
0 commit comments