mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 13:20:32 -04:00
- Remove USE_GCC. - No PORTREVISION bump as there should be no functional change. Submitted by: dim Obtained from: multimedia/gstreamer-plugins-good/files/patch-gst_goom_mmx.h
18 lines
578 B
C
18 lines
578 B
C
--- src/mmx.h.orig
|
|
+++ src/mmx.h
|
|
@@ -715,13 +715,13 @@ void zoom_filter_xmmx (int prevX, int pr
|
|
{ \
|
|
printf("emms()\n"); \
|
|
__asm__ __volatile__ ("emms" \
|
|
- "st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)"); \
|
|
+ "st","st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)"); \
|
|
}
|
|
|
|
#else
|
|
|
|
#define emms() __asm__ __volatile__ ("emms"::: \
|
|
- "st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)")
|
|
+ "st","st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)")
|
|
|
|
#endif
|
|
|