@@ -1110,24 +1110,24 @@ struct FunctionStackPoisoner : public InstVisitor<FunctionStackPoisoner> {
1110
1110
1111
1111
} // end anonymous namespace
1112
1112
1113
- void ModuleAddressSanitizerPass ::printPipeline (
1113
+ void AddressSanitizerPass ::printPipeline (
1114
1114
raw_ostream &OS, function_ref<StringRef(StringRef)> MapClassName2PassName) {
1115
- static_cast <PassInfoMixin<ModuleAddressSanitizerPass > *>(this )->printPipeline (
1115
+ static_cast <PassInfoMixin<AddressSanitizerPass > *>(this )->printPipeline (
1116
1116
OS, MapClassName2PassName);
1117
1117
OS << " <" ;
1118
1118
if (Options.CompileKernel )
1119
1119
OS << " kernel" ;
1120
1120
OS << " >" ;
1121
1121
}
1122
1122
1123
- ModuleAddressSanitizerPass::ModuleAddressSanitizerPass (
1123
+ AddressSanitizerPass::AddressSanitizerPass (
1124
1124
const AddressSanitizerOptions &Options, bool UseGlobalGC,
1125
1125
bool UseOdrIndicator, AsanDtorKind DestructorKind)
1126
1126
: Options(Options), UseGlobalGC(UseGlobalGC),
1127
1127
UseOdrIndicator(UseOdrIndicator), DestructorKind(DestructorKind) {}
1128
1128
1129
- PreservedAnalyses ModuleAddressSanitizerPass ::run (Module &M,
1130
- ModuleAnalysisManager &MAM) {
1129
+ PreservedAnalyses AddressSanitizerPass ::run (Module &M,
1130
+ ModuleAnalysisManager &MAM) {
1131
1131
ModuleAddressSanitizer ModuleSanitizer (M, Options.CompileKernel ,
1132
1132
Options.Recover , UseGlobalGC,
1133
1133
UseOdrIndicator, DestructorKind);
0 commit comments