From a35276bee25f95125258f60be89670d2b0ca6833 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 20 Aug 1998 17:35:29 +0000 Subject: [PATCH] (CALL_MCOUNT): Add missing semicolons. --- sysdeps/arm/sysdep.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sysdeps/arm/sysdep.h b/sysdeps/arm/sysdep.h index 13d34c7..6247f9c 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. */ -- 2.7.4