aboutsummaryrefslogtreecommitdiffstats
path: root/lib/System
diff options
context:
space:
mode:
authorXerxes Ranby <xerxes@zafena.se>2010-01-19 21:26:05 +0000
committerXerxes Ranby <xerxes@zafena.se>2010-01-19 21:26:05 +0000
commit1c8183df7f03b2e939c9fdeded8561abcdd52c45 (patch)
treedd37cbfff70dd62519b534795972b3a33a3101fe /lib/System
parent35f0febcb66b5a50a5a750efcbefc95f7fc25c7b (diff)
downloadexternal_llvm-1c8183df7f03b2e939c9fdeded8561abcdd52c45.zip
external_llvm-1c8183df7f03b2e939c9fdeded8561abcdd52c45.tar.gz
external_llvm-1c8183df7f03b2e939c9fdeded8561abcdd52c45.tar.bz2
Stubs for getHostCPUFeatures API. This implements part of PR5389.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93913 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System')
-rw-r--r--lib/System/Host.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/System/Host.cpp b/lib/System/Host.cpp
index 79897e4..e7193db 100644
--- a/lib/System/Host.cpp
+++ b/lib/System/Host.cpp
@@ -299,3 +299,7 @@ std::string sys::getHostCPUName() {
return "generic";
}
#endif
+
+bool sys::getHostCPUFeatures(StringMap<bool> &Features){
+ return false;
+}