From: Jim Wilson Date: Sun, 6 Feb 1994 20:58:13 +0000 (-0800) Subject: (FUNCTION_PROFILER): Concatenate strings to avoid X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f7fcfd3ff58fdf18192dc3fd558e02e4f727bc55;p=gcc.git (FUNCTION_PROFILER): Concatenate strings to avoid use of ANSI C specific feature. From-SVN: r6490 --- 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 */