deinterlace: Fix spurious colons in asm code

Fixes #584174.

Signed-off-by: David Schleef <ds@schleef.org>
This commit is contained in:
Brian Cameron 2009-06-01 11:58:21 -07:00 committed by David Schleef
parent 4d07c78f0b
commit 09fbeee42d

View file

@ -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)