summaryrefslogtreecommitdiffstats
path: root/clang/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
commit7927150fea4b042d91461787129ea589cdc4f8b6 (patch)
tree40e575f34f0725bdd183ac4c23bd5d62077ed438 /clang/lib/Frontend/CompilerInvocation.cpp
parent2339ffed97f6644294c173107144d2f15ac68987 (diff)
downloadbcm5719-llvm-7927150fea4b042d91461787129ea589cdc4f8b6.tar.gz
bcm5719-llvm-7927150fea4b042d91461787129ea589cdc4f8b6.zip
Revert r256063, it's killing clang-tools-extra
llvm-svn: 256066
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r--clang/lib/Frontend/CompilerInvocation.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp
index a03dded7076..c6068d7d94d 100644
--- a/clang/lib/Frontend/CompilerInvocation.cpp
+++ b/clang/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);
OpenPOWER on IntegriCloud