summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/sh/sh7032/delay/delay.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-11-01 22:02:33 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-11-01 22:02:33 +0000
commit13597a729d5b67618141e7e5176df19b6c2e012d (patch)
tree48713af0ced210070b2a1d0f60dbaa06e7bcd157 /c/src/lib/libcpu/sh/sh7032/delay/delay.c
parent2002-11-01 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-13597a729d5b67618141e7e5176df19b6c2e012d.tar.bz2
2002-11-01 Joel Sherrill <joel@OARcorp.com>
* delay/delay.c, score/ispsh7032.c: Removed warnings.
Diffstat (limited to 'c/src/lib/libcpu/sh/sh7032/delay/delay.c')
-rw-r--r--c/src/lib/libcpu/sh/sh7032/delay/delay.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/c/src/lib/libcpu/sh/sh7032/delay/delay.c b/c/src/lib/libcpu/sh/sh7032/delay/delay.c
index 1402b683ab..583e36e2bb 100644
--- a/c/src/lib/libcpu/sh/sh7032/delay/delay.c
+++ b/c/src/lib/libcpu/sh/sh7032/delay/delay.c
@@ -43,10 +43,10 @@ void CPU_delay( unsigned32 microseconds )
register unsigned32 _delay =
(microseconds) * (clicks_per_usec);
asm volatile (
-"0: add #-4,%0\n
- nop\n
- cmp/pl %0\n
- bt 0b
+"0: add #-4,%0\n\
+ nop\n\
+ cmp/pl %0\n\
+ bt 0b\n\
nop"
:: "r" (_delay) );
}