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
commit09574b1cc26d274d69cbaa05aa586402bd69d3e5 (patch)
treedd37cbfff70dd62519b534795972b3a33a3101fe /lib/System
parent7d8eb70d8d0a68e31d0860c22c227eff56ab6f23 (diff)
downloadexternal_llvm-09574b1cc26d274d69cbaa05aa586402bd69d3e5.zip
external_llvm-09574b1cc26d274d69cbaa05aa586402bd69d3e5.tar.gz
external_llvm-09574b1cc26d274d69cbaa05aa586402bd69d3e5.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;
+}