summaryrefslogtreecommitdiffstats
path: root/lib/Headers/popcntintrin.h
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2015-06-17 07:09:32 +0000
committerEric Christopher <echristo@gmail.com>2015-06-17 07:09:32 +0000
commit41885d36e85ead75a1d18ef7d2f43663f90ed67e (patch)
tree62fec5272b6580d33447211584b973236c020d3a /lib/Headers/popcntintrin.h
parent695aff12b29828c77c34e1b29d37900d26ea860e (diff)
Update the intel intrinsic headers to use the target attribute support.
This involved removing the conditional inclusion and replacing them with target attributes matching the original conditional inclusion and checks. The testcase update removes the macro checks for each file and replaces them with usage of the __target__ attribute, e.g.: int __attribute__((__target__(("sse3")))) foo(int a) { _mm_mwait(0, 0); return 4; } This usage does require the enclosing function have the requisite __target__ attribute for inlining and code generation - also for any macro intrinsic uses in the enclosing function. There's no change for existing uses of the intrinsic headers. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@239883 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Headers/popcntintrin.h')
-rw-r--r--lib/Headers/popcntintrin.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/Headers/popcntintrin.h b/lib/Headers/popcntintrin.h
index 79d12f85c7..fede8da2bd 100644
--- a/lib/Headers/popcntintrin.h
+++ b/lib/Headers/popcntintrin.h
@@ -21,15 +21,11 @@
*===-----------------------------------------------------------------------===
*/
-#ifndef __POPCNT__
-#error "POPCNT instruction set not enabled"
-#endif
-
#ifndef _POPCNTINTRIN_H
#define _POPCNTINTRIN_H
/* Define the default attributes for the functions in this file. */
-#define DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__))
+#define DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("popcnt")))
static __inline__ int DEFAULT_FN_ATTRS
_mm_popcnt_u32(unsigned int __A)