mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
deinterlace: Fix spurious colons in asm code
Fixes #584174. Signed-off-by: David Schleef <ds@schleef.org>
This commit is contained in:
parent
4d07c78f0b
commit
09fbeee42d
1 changed files with 13 additions and 13 deletions
|
@ -180,10 +180,10 @@ mm_support(void)
|
||||||
"jz NotSupported5\n\t" /* MMX not supported */
|
"jz NotSupported5\n\t" /* MMX not supported */
|
||||||
"testl $0x01000000, %%eax\n\t" /* Test for Ext'd MMX */
|
"testl $0x01000000, %%eax\n\t" /* Test for Ext'd MMX */
|
||||||
"jnz EMMXSupported\n\t"
|
"jnz EMMXSupported\n\t"
|
||||||
"movl $1, %0:\n\n\t" /* MMX Supported */
|
"movl $1, %0\n\n\t" /* MMX Supported */
|
||||||
"jmp Return\n\n"
|
"jmp Return\n\n"
|
||||||
"EMMXSupported:\n\t"
|
"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"
|
"jmp Return\n\t"
|
||||||
|
|
||||||
|
|
||||||
|
@ -203,10 +203,10 @@ mm_support(void)
|
||||||
"jz NotSupported6\n\t" /* MMX not supported */
|
"jz NotSupported6\n\t" /* MMX not supported */
|
||||||
"testl $0x80000000, %%edx\n\t" /* Test for 3DNow! */
|
"testl $0x80000000, %%edx\n\t" /* Test for 3DNow! */
|
||||||
"jnz ThreeDNowSupported\n\t"
|
"jnz ThreeDNowSupported\n\t"
|
||||||
"movl $1, %0:\n\n\t" /* MMX Supported */
|
"movl $1, %0\n\n\t" /* MMX Supported */
|
||||||
"jmp Return\n\n"
|
"jmp Return\n\n"
|
||||||
"ThreeDNowSupported:\n\t"
|
"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"
|
"jmp Return\n\t"
|
||||||
|
|
||||||
|
|
||||||
|
@ -219,25 +219,25 @@ mm_support(void)
|
||||||
"cpuid\n\t"
|
"cpuid\n\t"
|
||||||
"testl $0x00800000, %%edx\n\t" /* Test for MMX */
|
"testl $0x00800000, %%edx\n\t" /* Test for MMX */
|
||||||
"jz NotSupported7\n\t" /* MMX Not supported */
|
"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"
|
"jmp Return\n\t"
|
||||||
|
|
||||||
/* Nothing supported */
|
/* Nothing supported */
|
||||||
"\nNotSupported1:\n\t"
|
"\nNotSupported1:\n\t"
|
||||||
"#movl $101, %0:\n\n\t"
|
"#movl $101, %0\n\n\t"
|
||||||
"\nNotSupported2:\n\t"
|
"\nNotSupported2:\n\t"
|
||||||
"#movl $102, %0:\n\n\t"
|
"#movl $102, %0\n\n\t"
|
||||||
"\nNotSupported3:\n\t"
|
"\nNotSupported3:\n\t"
|
||||||
"#movl $103, %0:\n\n\t"
|
"#movl $103, %0\n\n\t"
|
||||||
"\nNotSupported4:\n\t"
|
"\nNotSupported4:\n\t"
|
||||||
"#movl $104, %0:\n\n\t"
|
"#movl $104, %0\n\n\t"
|
||||||
"\nNotSupported5:\n\t"
|
"\nNotSupported5:\n\t"
|
||||||
"#movl $105, %0:\n\n\t"
|
"#movl $105, %0\n\n\t"
|
||||||
"\nNotSupported6:\n\t"
|
"\nNotSupported6:\n\t"
|
||||||
"#movl $106, %0:\n\n\t"
|
"#movl $106, %0\n\n\t"
|
||||||
"\nNotSupported7:\n\t"
|
"\nNotSupported7:\n\t"
|
||||||
"#movl $107, %0:\n\n\t"
|
"#movl $107, %0\n\n\t"
|
||||||
"movl $0, %0:\n\n\t"
|
"movl $0, %0\n\n\t"
|
||||||
|
|
||||||
"Return:\n\t"
|
"Return:\n\t"
|
||||||
: "=a" (rval)
|
: "=a" (rval)
|
||||||
|
|
Loading…
Reference in a new issue