diff --git a/gst/deinterlace/tvtime/mmx.h b/gst/deinterlace/tvtime/mmx.h index 3627e61b2b..7e33cf5c6a 100644 --- a/gst/deinterlace/tvtime/mmx.h +++ b/gst/deinterlace/tvtime/mmx.h @@ -180,10 +180,10 @@ mm_support(void) "jz NotSupported5\n\t" /* MMX not supported */ "testl $0x01000000, %%eax\n\t" /* Test for Ext'd MMX */ "jnz EMMXSupported\n\t" - "movl $1, %0:\n\n\t" /* MMX Supported */ + "movl $1, %0\n\n\t" /* MMX Supported */ "jmp Return\n\n" "EMMXSupported:\n\t" - "movl $3, %0:\n\n\t" /* EMMX and MMX Supported */ + "movl $3, %0\n\n\t" /* EMMX and MMX Supported */ "jmp Return\n\t" @@ -203,10 +203,10 @@ mm_support(void) "jz NotSupported6\n\t" /* MMX not supported */ "testl $0x80000000, %%edx\n\t" /* Test for 3DNow! */ "jnz ThreeDNowSupported\n\t" - "movl $1, %0:\n\n\t" /* MMX Supported */ + "movl $1, %0\n\n\t" /* MMX Supported */ "jmp Return\n\n" "ThreeDNowSupported:\n\t" - "movl $5, %0:\n\n\t" /* 3DNow! and MMX Supported */ + "movl $5, %0\n\n\t" /* 3DNow! and MMX Supported */ "jmp Return\n\t" @@ -219,25 +219,25 @@ mm_support(void) "cpuid\n\t" "testl $0x00800000, %%edx\n\t" /* Test for MMX */ "jz NotSupported7\n\t" /* MMX Not supported */ - "movl $1, %0:\n\n\t" /* MMX Supported */ + "movl $1, %0\n\n\t" /* MMX Supported */ "jmp Return\n\t" /* Nothing supported */ "\nNotSupported1:\n\t" - "#movl $101, %0:\n\n\t" + "#movl $101, %0\n\n\t" "\nNotSupported2:\n\t" - "#movl $102, %0:\n\n\t" + "#movl $102, %0\n\n\t" "\nNotSupported3:\n\t" - "#movl $103, %0:\n\n\t" + "#movl $103, %0\n\n\t" "\nNotSupported4:\n\t" - "#movl $104, %0:\n\n\t" + "#movl $104, %0\n\n\t" "\nNotSupported5:\n\t" - "#movl $105, %0:\n\n\t" + "#movl $105, %0\n\n\t" "\nNotSupported6:\n\t" - "#movl $106, %0:\n\n\t" + "#movl $106, %0\n\n\t" "\nNotSupported7:\n\t" - "#movl $107, %0:\n\n\t" - "movl $0, %0:\n\n\t" + "#movl $107, %0\n\n\t" + "movl $0, %0\n\n\t" "Return:\n\t" : "=a" (rval)