From: Renato Golin Date: Thu, 13 Feb 2014 10:26:33 +0000 (+0000) Subject: Remove spurious default case to silent sanitizer X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0f242938ea3e276eb2c22450af482bba16cd9455;p=clang Remove spurious default case to silent sanitizer git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201309 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp index 5f64097fc2..77a830b12b 100644 --- a/lib/Driver/Tools.cpp +++ b/lib/Driver/Tools.cpp @@ -6564,8 +6564,6 @@ static void AddRunTimeLibs(const ToolChain &TC, const Driver &D, case ToolChain::RLT_Libgcc: AddLibgcc(TC.getTriple(), D, CmdArgs, Args); break; - default: - llvm_unreachable("Unknown RT-Lib type"); } }