From f7fcfd3ff58fdf18192dc3fd558e02e4f727bc55 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Sun, 6 Feb 1994 12:58:13 -0800 Subject: [PATCH] (FUNCTION_PROFILER): Concatenate strings to avoid use of ANSI C specific feature. From-SVN: r6490 --- gcc/config/m68k/hp320.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/config/m68k/hp320.h b/gcc/config/m68k/hp320.h index 984c2de9835..437044eed03 100644 --- a/gcc/config/m68k/hp320.h +++ b/gcc/config/m68k/hp320.h @@ -664,8 +664,8 @@ do { register int i; \ /* HP-UX needs the call to mcount before the link instruction. Copy the return address onto the stack before the call to fake it out. */ #define FUNCTION_PROFILER(FILE, LABEL_NO) \ - fprintf (FILE, "\tmovel a6@(4),sp@-\n" \ - "\tmovl #LP%d,a0\n\tjsr mcount\n" \ - "\taddqw #4,sp\n", (LABEL_NO)); + fprintf (FILE, \ + "\tmovel a6@(4),sp@-\n\tmovl #LP%d,a0\n\tjsr mcount\n\taddqw #4,sp\n", \ + (LABEL_NO)); #endif /* not HPUX_ASM */ -- 2.30.2