aboutsummaryrefslogtreecommitdiff
path: root/include/clang
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2012-11-08 01:03:29 +0000
committerBob Wilson <bob.wilson@apple.com>2012-11-08 01:03:29 +0000
commit64c4f29ff3b98d412e0235504364096e997b04bb (patch)
treee9de67aa6471c394da87dd2654658ce25f7085cf /include/clang
parente81b43bc306d361fcf4d411aeb14b43f8464bf4a (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 'include/clang')
-rw-r--r--include/clang/Driver/Driver.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/clang/Driver/Driver.h b/include/clang/Driver/Driver.h
index fa83c374c2..b752ce6a34 100644
--- a/include/clang/Driver/Driver.h
+++ b/include/clang/Driver/Driver.h
@@ -146,9 +146,6 @@ private:
/// jobs.
unsigned CheckInputsExist : 1;
- /// \brief Force use of clang frontend.
- unsigned ForcedClangUse : 1;
-
public:
/// Use lazy precompiled headers for PCH support.
unsigned CCCUsePCH : 1;
@@ -218,9 +215,6 @@ public:
InstalledDir = Value;
}
- bool shouldForceClangUse() const { return ForcedClangUse; }
- void setForcedClangUse(bool V = true) { ForcedClangUse = V; }
-
/// @}
/// @name Primary Functionality
/// @{