diff options
author | Bob Wilson <bob.wilson@apple.com> | 2012-11-08 01:03:29 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2012-11-08 01:03:29 +0000 |
commit | 64c4f29ff3b98d412e0235504364096e997b04bb (patch) | |
tree | e9de67aa6471c394da87dd2654658ce25f7085cf /lib/Driver/Driver.cpp | |
parent | e81b43bc306d361fcf4d411aeb14b43f8464bf4a (diff) |
Remove code to fall back to llvm-gcc for i386 kexts.
More cleanups to follow in separate commits....
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167566 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Driver.cpp')
-rw-r--r-- | lib/Driver/Driver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp index 4fc6db980c..9881bbaca3 100644 --- a/lib/Driver/Driver.cpp +++ b/lib/Driver/Driver.cpp @@ -58,7 +58,7 @@ Driver::Driver(StringRef ClangExecutable, CCCIsCPP(false),CCCEcho(false), CCCPrintBindings(false), CCPrintOptions(false), CCPrintHeaders(false), CCLogDiagnostics(false), CCGenDiagnostics(false), CCCGenericGCCName(""), CheckInputsExist(true), - ForcedClangUse(false), CCCUsePCH(true), SuppressMissingInputWarning(false) { + CCCUsePCH(true), SuppressMissingInputWarning(false) { Name = llvm::sys::path::stem(ClangExecutable); Dir = llvm::sys::path::parent_path(ClangExecutable); |