diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2025-07-25 13:24:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-25 13:24:00 -0400 |
commit | 479ae4aa8fe894dbb00a895b98620120c5e06769 (patch) | |
tree | ee2ee4870bf763cce79250b7feefaaea40f2f245 /clang/lib/Frontend/CompilerInstance.cpp | |
parent | da30197f1c967c3196a376439c860c2d55b84495 (diff) | |
download | llvm-479ae4aa8fe894dbb00a895b98620120c5e06769.zip llvm-479ae4aa8fe894dbb00a895b98620120c5e06769.tar.gz llvm-479ae4aa8fe894dbb00a895b98620120c5e06769.tar.bz2 |
Revert "fix: replace report_fatal_error with Diags and exit" (#150662)
Reverts llvm/llvm-project#147959
Diffstat (limited to 'clang/lib/Frontend/CompilerInstance.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInstance.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInstance.cpp b/clang/lib/Frontend/CompilerInstance.cpp index bbb856b..c7b82db 100644 --- a/clang/lib/Frontend/CompilerInstance.cpp +++ b/clang/lib/Frontend/CompilerInstance.cpp @@ -554,7 +554,6 @@ void CompilerInstance::createASTContext() { PP.getBuiltinInfo(), PP.TUKind); Context->InitBuiltinTypes(getTarget(), getAuxTarget()); setASTContext(Context); - Context->initSanitizers(getLangOpts(), PP.getSourceManager()); } // ExternalASTSource |