diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2019-01-15 20:59:59 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2019-01-15 20:59:59 +0000 |
commit | 3a2388359046be4067da602083e4e92dcc540ef0 (patch) | |
tree | be6f81f323ab50e5975c9e6b977a8648d8088382 /lib/CodeGen | |
parent | 48f3908b008d2b24ee43e9e8e3ce66c37b92baf3 (diff) | |
download | clang-3a2388359046be4067da602083e4e92dcc540ef0.tar.gz |
CodeGen: Remove debug printf unintentionally added in r351228.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@351241 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/CodeGenModule.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/CodeGen/CodeGenModule.cpp b/lib/CodeGen/CodeGenModule.cpp index af8dcb2bdf..244738042c 100644 --- a/lib/CodeGen/CodeGenModule.cpp +++ b/lib/CodeGen/CodeGenModule.cpp @@ -137,12 +137,10 @@ CodeGenModule::CodeGenModule(ASTContext &C, const HeaderSearchOptions &HSO, // Enable TBAA unless it's suppressed. ThreadSanitizer needs TBAA even at O0. if (LangOpts.Sanitize.has(SanitizerKind::Thread) || - (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0)) { - fprintf(stderr, "TBAA enabled\n"); + (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0)) TBAA.reset(new CodeGenTBAA(Context, TheModule, CodeGenOpts, getLangOpts(), getCXXABI().getMangleContext())); - } - + // If debug info or coverage generation is enabled, create the CGDebugInfo // object. if (CodeGenOpts.getDebugInfo() != codegenoptions::NoDebugInfo || |