From: Eric Christopher Date: Tue, 13 Oct 2015 18:40:17 +0000 (+0000) Subject: Add subtarget feature support for 3dnowa to the 3dnowa intrinsics. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=79bb18920f0bb77b3cc9db51860fa5d7c94093c8;p=clang Add subtarget feature support for 3dnowa to the 3dnowa intrinsics. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250202 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Headers/mm3dnow.h b/lib/Headers/mm3dnow.h index 3218df8271..cb93faf2b6 100644 --- a/lib/Headers/mm3dnow.h +++ b/lib/Headers/mm3dnow.h @@ -132,6 +132,10 @@ _m_pmulhrw(__m64 __m1, __m64 __m2) { return (__m64)__builtin_ia32_pmulhrw((__v4hi)__m1, (__v4hi)__m2); } +/* Handle the 3dnowa instructions here. */ +#undef __DEFAULT_FN_ATTRS +#define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("3dnowa"))) + static __inline__ __m64 __DEFAULT_FN_ATTRS _m_pf2iw(__m64 __m) { return (__m64)__builtin_ia32_pf2iw((__v2sf)__m);