Skip to content
Snippets Groups Projects
Commit ac28dcfe authored by Graeme Russ's avatar Graeme Russ Committed by Tom Rix
Browse files

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: default avatarGraeme Russ <graeme.russ@gmail.com>
parent 8b576fa2
No related branches found
No related tags found
No related merge requests found
......@@ -51,9 +51,9 @@ void init_sc520_enet (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);
......
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment