diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1994-02-06 12:58:13 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1994-02-06 12:58:13 -0800 |
commit | f7fcfd3ff58fdf18192dc3fd558e02e4f727bc55 (patch) | |
tree | ff7af88ed074d0ec5a9443f76649a78e78f3dde0 /gcc | |
parent | dc55be0e841ab755d4f9c09adf4b2349cfe4b9c1 (diff) | |
download | gcc-f7fcfd3ff58fdf18192dc3fd558e02e4f727bc55.zip gcc-f7fcfd3ff58fdf18192dc3fd558e02e4f727bc55.tar.gz gcc-f7fcfd3ff58fdf18192dc3fd558e02e4f727bc55.tar.bz2 |
(FUNCTION_PROFILER): Concatenate strings to avoid
use of ANSI C specific feature.
From-SVN: r6490
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/m68k/hp320.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/m68k/hp320.h b/gcc/config/m68k/hp320.h index 984c2de..437044e 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 */ |