(FUNCTION_PROFILER): Concatenate strings to avoid
authorJim Wilson <wilson@gcc.gnu.org>
Sun, 6 Feb 1994 20:58:13 +0000 (12:58 -0800)
committerJim Wilson <wilson@gcc.gnu.org>
Sun, 6 Feb 1994 20:58:13 +0000 (12:58 -0800)
use of ANSI C specific feature.

From-SVN: r6490

gcc/config/m68k/hp320.h

index 984c2de983593fc3efd4e3743cc3f7e2f1df2428..437044eed03e828df2b98b2bb7cb31aa1bcd224a 100644 (file)
@@ -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 */