summaryrefslogtreecommitdiff
path: root/cpu
diff options
context:
space:
mode:
authorGraeme Russ <[email protected]>2009-08-23 12:59:46 +1000
committerTom Rix <[email protected]>2009-10-03 09:04:09 -0500
commitac28dcfe895e5fbfc51347e9e826c8f56796e551 (patch)
treef5c63c835dff2b39672fab504f56c79fadd731d2 /cpu
parent8b576fa2c43a3a9e775452c2d4ae2766f6d089bf (diff)
i386: Change inline asm global symbols to local
gcc 4.3.2 optimiser creates multiple copies of inline asm (who knows why) Remove use of global names for labels to prevent 'symbol already defined' errors Signed-off-by: Graeme Russ <[email protected]>
Diffstat (limited to 'cpu')
-rw-r--r--cpu/i386/sc520/sc520.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/i386/sc520/sc520.c b/cpu/i386/sc520/sc520.c
index ae3b50007f2..1d79210a62f 100644
--- a/cpu/i386/sc520/sc520.c
+++ b/cpu/i386/sc520/sc520.c
@@ -109,9 +109,9 @@ void init_sc520(void)
/* wait at least one millisecond */
asm("movl $0x2000,%%ecx\n"
- "wait_loop: pushl %%ecx\n"
+ "0: pushl %%ecx\n"
"popl %%ecx\n"
- "loop wait_loop\n": : : "ecx");
+ "loop 0b\n": : : "ecx");
/* turn on the SDRAM write buffer */
write_mmcr_byte(SC520_DBCTL, 0x11);