# HG changeset patch # User lu_zero # Date 1249400337 0 # Node ID 9ee424317daedc54a4ec43f7495da54e4e3a05a0 # Parent 3495ccd3aef8d827aac13423998819fbe3b3eafa Make sure it builds with -ftracer Use local labels to avoid clashes caused by -ftracer diff -r 3495ccd3aef8 -r 9ee424317dae mp3lib/decode_mmx.c --- a/mp3lib/decode_mmx.c Mon Aug 03 23:04:04 2009 +0000 +++ b/mp3lib/decode_mmx.c Tue Aug 04 15:38:57 2009 +0000 @@ -219,7 +219,7 @@ //printf("DEBUG: channel %d, bo %d, off %d\n", channel, bo, 16 - bo1); __asm__ volatile( ASMALIGN(4) -".L03:\n\t" +"0:\n\t" "movq (%1),%%mm0\n\t" "movq 64(%1),%%mm4\n\t" "pmaddwd (%2),%%mm0\n\t" @@ -265,7 +265,7 @@ "add $8,%3\n\t" "decl %0\n\t" - "jnz .L03\n\t" + "jnz 0b\n\t" "movq (%1),%%mm0\n\t" "pmaddwd (%2),%%mm0\n\t" @@ -291,7 +291,7 @@ "movl $7,%0\n\t" ASMALIGN(4) -".L04:\n\t" +"1:\n\t" "movq (%1),%%mm0\n\t" "movq 64(%1),%%mm4\n\t" "pmaddwd (%2),%%mm0\n\t" @@ -340,7 +340,7 @@ "add $128,%1\n\t" "add $8,%3\n\t" "decl %0\n\t" - "jnz .L04\n\t" + "jnz 1b\n\t" "movq (%1),%%mm0\n\t" "pmaddwd (%2),%%mm0\n\t"