diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-09-17 00:24:52 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-09-17 00:24:52 +0000 |
commit | b993f5d93b994b9b0aac6aebae669621744bbed7 (patch) | |
tree | 4b80a97cee4e3757497155dcfbb37ab658c929bf /lib/Driver/ToolChain.cpp | |
parent | 069ea646616e4ece684e1dec652640f644f0d40a (diff) |
Driver: Add a toolchain hook for whether the system has native LLVM support.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@114137 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/ToolChain.cpp')
-rw-r--r-- | lib/Driver/ToolChain.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Driver/ToolChain.cpp b/lib/Driver/ToolChain.cpp index 337ea4e8f9..e9a612c4cd 100644 --- a/lib/Driver/ToolChain.cpp +++ b/lib/Driver/ToolChain.cpp @@ -43,6 +43,10 @@ types::ID ToolChain::LookupTypeForExtension(const char *Ext) const { return types::lookupTypeForExtension(Ext); } +bool ToolChain::HasNativeLLVMSupport() const { + return false; +} + /// getARMTargetCPU - Get the (LLVM) name of the ARM cpu we are targetting. // // FIXME: tblgen this. |