diff options
author | Amy Huang <akhuang@google.com> | 2019-10-30 17:31:12 -0700 |
---|---|---|
committer | Amy Huang <akhuang@google.com> | 2019-10-30 17:31:12 -0700 |
commit | 004ed2b0d1b86d424643ffc88fce20ad8bab6804 (patch) | |
tree | 35cf8523de716a0dd8cb975f319075f0e87324ec /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | 6d03890384517919a3ba7fe4c35535425f278f89 (diff) | |
download | bcm5719-llvm-004ed2b0d1b86d424643ffc88fce20ad8bab6804.tar.gz bcm5719-llvm-004ed2b0d1b86d424643ffc88fce20ad8bab6804.zip |
Revert "[CodeView] Add option to disable inline line tables."
because it breaks compiler-rt tests.
This reverts commit 6d03890384517919a3ba7fe4c35535425f278f89.
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index 1b1d391a63d..3f9a52ab763 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -764,10 +764,6 @@ void CodeGenFunction::StartFunction(GlobalDecl GD, Fn->addFnAttr("no-jump-tables", llvm::toStringRef(CGM.getCodeGenOpts().NoUseJumpTables)); - // Add no-inline-line-tables value. - if (CGM.getCodeGenOpts().NoInlineLineTables) - Fn->addFnAttr("no-inline-line-tables"); - // Add profile-sample-accurate value. if (CGM.getCodeGenOpts().ProfileSampleAccurate) Fn->addFnAttr("profile-sample-accurate"); |