summaryrefslogtreecommitdiff
path: root/lib/Frontend/CompilerInvocation.cpp
diff options
context:
space:
mode:
authorPaul Robinson <paul_robinson@playstation.sony.com>2015-12-19 00:23:11 +0000
committerPaul Robinson <paul_robinson@playstation.sony.com>2015-12-19 00:23:11 +0000
commitdd0781c5f87cde45aa4873b048c85f780ab2aa07 (patch)
tree640144ddac41c4d0cfd9f43a0c237df9d1b09e4d /lib/Frontend/CompilerInvocation.cpp
parent44ba9b94aaa6927013f843ca6bdef0c32f80a191 (diff)
downloadclang-dd0781c5f87cde45aa4873b048c85f780ab2aa07.tar.gz
Revert r256063, it's killing clang-tools-extra
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@256066 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/CompilerInvocation.cpp')
-rw-r--r--lib/Frontend/CompilerInvocation.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/Frontend/CompilerInvocation.cpp b/lib/Frontend/CompilerInvocation.cpp
index a03dded707..c6068d7d94 100644
--- a/lib/Frontend/CompilerInvocation.cpp
+++ b/lib/Frontend/CompilerInvocation.cpp
@@ -405,13 +405,6 @@ static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK,
.Case("limited", CodeGenOptions::LimitedDebugInfo)
.Case("standalone", CodeGenOptions::FullDebugInfo));
}
- if (Arg *A = Args.getLastArg(OPT_debugger_tuning_EQ)) {
- Opts.setDebuggerTuning(
- llvm::StringSwitch<llvm::DebuggerKind>(A->getValue())
- .Case("gdb", llvm::DebuggerKind::GDB)
- .Case("lldb", llvm::DebuggerKind::LLDB)
- .Case("sce", llvm::DebuggerKind::SCE));
- }
Opts.DwarfVersion = getLastArgIntValue(Args, OPT_dwarf_version_EQ, 0, Diags);
Opts.DebugColumnInfo = Args.hasArg(OPT_dwarf_column_info);
Opts.EmitCodeView = Args.hasArg(OPT_gcodeview);