diff options
author | kwm <kwm@FreeBSD.org> | 2015-02-04 03:08:59 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2015-02-04 03:08:59 +0800 |
commit | 84565960bf5522818ca19929085ec2b47fea2f76 (patch) | |
tree | 24b6c468b517efb53215956be6c2b2aeeebd0063 /x11 | |
parent | 3d3f4428065ee9a6fb43315861f5b4ab9f719459 (diff) | |
download | freebsd-ports-graphics-84565960bf5522818ca19929085ec2b47fea2f76.tar.gz freebsd-ports-graphics-84565960bf5522818ca19929085ec2b47fea2f76.tar.zst freebsd-ports-graphics-84565960bf5522818ca19929085ec2b47fea2f76.zip |
Fix the build with clang 3.6.
PR: 197201
Submitted by: amdmi3@
Diffstat (limited to 'x11')
-rw-r--r-- | x11/pixman/files/patch-pixman_pixman-mmx.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/x11/pixman/files/patch-pixman_pixman-mmx.c b/x11/pixman/files/patch-pixman_pixman-mmx.c new file mode 100644 index 00000000000..138b67e8395 --- /dev/null +++ b/x11/pixman/files/patch-pixman_pixman-mmx.c @@ -0,0 +1,21 @@ +Clang 3.6 is a lot stricter with some constraints. + +https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197201 + +http://llvm.org/viewvc/llvm-project?view=revision&revision=225244 +http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20150112/121309.html + +--- files/patch-pixman__pixman-mmx.c (revision 0) ++++ files/patch-pixman__pixman-mmx.c (working copy) +@@ -0,0 +1,11 @@ ++--- pixman/pixman-mmx.c.orig 2014-04-24 08:34:14.000000000 +0400 +++++ pixman/pixman-mmx.c 2015-01-30 20:19:28.000000000 +0300 ++@@ -89,7 +89,7 @@ ++ return __A; ++ } ++ ++-# ifdef __OPTIMIZE__ +++# if defined(__OPTIMIZE__) && !(defined (__clang__) && defined(__clang_major__) && defined(__clang_minor__) && __clang_major__ == 3 && __clang_minor__ >= 6) ++ extern __inline __m64 __attribute__((__gnu_inline__, __always_inline__, __artificial__)) ++ _mm_shuffle_pi16 (__m64 __A, int8_t const __N) ++ { |