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/Driver/ToolChains/Clang.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/Driver/ToolChains/Clang.cpp')
-rw-r--r-- | clang/lib/Driver/ToolChains/Clang.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/clang/lib/Driver/ToolChains/Clang.cpp b/clang/lib/Driver/ToolChains/Clang.cpp index f5abdf15fd4..c60dc76ae1b 100644 --- a/clang/lib/Driver/ToolChains/Clang.cpp +++ b/clang/lib/Driver/ToolChains/Clang.cpp @@ -3296,12 +3296,6 @@ static void RenderDebugOptions(const ToolChain &TC, const Driver &D, } } - // Omit inline line tables if requested. - if (!Args.hasFlag(options::OPT_ginline_line_tables, - options::OPT_gno_inline_line_tables, false)) { - CmdArgs.push_back("-gno-inline-line-tables"); - } - // Adjust the debug info kind for the given toolchain. TC.adjustDebugInfoKind(DebugInfoKind, Args); |