da5dc5f1ca
Add debug option.
24 lines
920 B
Text
24 lines
920 B
Text
$NetBSD: patch-ac,v 1.4 2008/07/30 09:53:36 wiz Exp $
|
|
|
|
--- liboil/sse/composite_sse_4pix.c.orig 2008-05-12 23:47:18.000000000 +0000
|
|
+++ liboil/sse/composite_sse_4pix.c
|
|
@@ -275,6 +275,11 @@ composite_in_argb_const_mask_sse (uint32
|
|
OIL_DEFINE_IMPL_FULL_WRAPPER (composite_in_argb_const_mask_sse,
|
|
composite_in_argb_const_mask, OIL_IMPL_FLAG_SSE2);
|
|
|
|
+/*
|
|
+ * These functions trigger an ICE with gcc-3.3.3 on i386.
|
|
+ * (see NetBSD PR pkg/34886)
|
|
+ */
|
|
+#if !(defined(__i386__) && __GNUC__ && (__GNUC__ < 4))
|
|
SSE_FUNCTION static void
|
|
composite_over_argb_sse (uint32_t *dest, const uint32_t *src, int n)
|
|
{
|
|
@@ -509,6 +514,7 @@ composite_in_over_argb_const_mask_sse (u
|
|
}
|
|
OIL_DEFINE_IMPL_FULL_WRAPPER (composite_in_over_argb_const_mask_sse,
|
|
composite_in_over_argb_const_mask, OIL_IMPL_FLAG_SSE2);
|
|
+#endif /* i386 gcc<4 */
|
|
|
|
SSE_FUNCTION static void
|
|
composite_over_u8_sse (uint8_t *dest, const uint8_t *src, int n)
|