diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-08-20 17:35:29 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-08-20 17:35:29 +0000 |
commit | a35276bee25f95125258f60be89670d2b0ca6833 (patch) | |
tree | 9879aeca9b0d11ff5a3904f072a738a4370e1d59 /sysdeps | |
parent | b292f4b3acc1c11950e6e3ec5c850935c63bd47e (diff) | |
download | glibc-a35276bee25f95125258f60be89670d2b0ca6833.tar glibc-a35276bee25f95125258f60be89670d2b0ca6833.tar.gz glibc-a35276bee25f95125258f60be89670d2b0ca6833.tar.bz2 glibc-a35276bee25f95125258f60be89670d2b0ca6833.zip |
(CALL_MCOUNT): Add missing semicolons.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/arm/sysdep.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/arm/sysdep.h b/sysdeps/arm/sysdep.h index 13d34c741b..6247f9c94b 100644 --- a/sysdeps/arm/sysdep.h +++ b/sysdeps/arm/sysdep.h @@ -74,8 +74,8 @@ /* If compiled for profiling, call `mcount' at the start of each function. */ #ifdef PROF #define CALL_MCOUNT \ - str lr,[sp, #-4]! \ - bl PLTJMP(mcount) \ + str lr,[sp, #-4]! ; \ + bl PLTJMP(mcount) ; \ ldr lr, [sp], #4 #else #define CALL_MCOUNT /* Do nothing. */ |