From 5edbd23c2a6b21cd4a80e1a83db3fcfadb339764 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Thu, 26 Aug 2010 00:55:55 +0000 Subject: [PATCH] Driver: Fix thinko where I switched to always using the old toolchain, instead of always using the new toolchain. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112125 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Driver/HostInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Driver/HostInfo.cpp b/lib/Driver/HostInfo.cpp index 3adcbc0d7c..b8d26ff813 100644 --- a/lib/Driver/HostInfo.cpp +++ b/lib/Driver/HostInfo.cpp @@ -115,7 +115,7 @@ ToolChain *DarwinHostInfo::CreateToolChain(const ArgList &Args, // If we recognized the arch, match it to the toolchains we support. if (Arch == llvm::Triple::arm || Arch == llvm::Triple::thumb || Arch == llvm::Triple::x86 || Arch == llvm::Triple::x86_64) { - TC = new toolchains::DarwinGCC(*this, TCTriple); + TC = new toolchains::DarwinClang(*this, TCTriple); } else TC = new toolchains::Darwin_Generic_GCC(*this, TCTriple); } -- 2.50.0