diff options
author | Brian Cameron <brian.cameron@sun.com> | 2009-06-01 11:58:21 -0700 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2009-06-01 12:01:28 -0700 |
commit | 09fbeee42d4ce76840d144a5eb03a9192fc1f4dd (patch) | |
tree | 83007ed011e76538ff267dd8f44f8d8f021da364 | |
parent | 4d07c78f0b5a350858a608eddc4eece540e929cf (diff) |
deinterlace: Fix spurious colons in asm code
Fixes #584174.
Signed-off-by: David Schleef <ds@schleef.org>
-rw-r--r-- | gst/deinterlace/tvtime/mmx.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gst/deinterlace/tvtime/mmx.h b/gst/deinterlace/tvtime/mmx.h index 3627e61b..7e33cf5c 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) |