diff options
author | Nick Desaulniers <ndesaulniers@google.com> | 2020-08-07 16:11:41 -0700 |
---|---|---|
committer | Nick Desaulniers <ndesaulniers@google.com> | 2020-08-07 16:11:41 -0700 |
commit | abb9bf4bcf98a226d9350448e31411eb55e9efb0 (patch) | |
tree | 3f190ff504c10966ec65c5d68842767f9dd2c8ec /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 73413d266abc2436bd1993a4e21a9151bd102f17 (diff) | |
download | llvm-abb9bf4bcf98a226d9350448e31411eb55e9efb0.zip llvm-abb9bf4bcf98a226d9350448e31411eb55e9efb0.tar.gz llvm-abb9bf4bcf98a226d9350448e31411eb55e9efb0.tar.bz2 |
Revert "[Clang] implement -fno-eliminate-unused-debug-types"
This reverts commit e486921fd6cf96ae9114adac455f7c0b5c1088a7.
Breaks windows builds and osx builds.
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index c3c8f3b..8e8bf9d 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -767,7 +767,6 @@ static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK, .Case("constructor", codegenoptions::DebugInfoConstructor) .Case("limited", codegenoptions::LimitedDebugInfo) .Case("standalone", codegenoptions::FullDebugInfo) - .Case("unused-types", codegenoptions::UnusedTypeInfo) .Default(~0U); if (Val == ~0U) Diags.Report(diag::err_drv_invalid_value) << A->getAsString(Args) |