diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-07-02 11:47:41 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-07-02 11:47:41 +0000 |
commit | 534fd0c84a01680801234318c772c52f064fa590 (patch) | |
tree | 1bbece9410f1fff5b49efb72fcc697d548530d24 /gcc/genoutput.c | |
parent | 5703af2726ac5a6cec03d59bc056cc3cbf9b0436 (diff) | |
download | gcc-534fd0c84a01680801234318c772c52f064fa590.tar.gz |
(process_template): Place increment expression outside of putchar
function call.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14382 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genoutput.c')
-rw-r--r-- | gcc/genoutput.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/gcc/genoutput.c b/gcc/genoutput.c index bbf620068b9..8fdf4ca2c11 100644 --- a/gcc/genoutput.c +++ b/gcc/genoutput.c @@ -1,5 +1,5 @@ /* Generate code from to output assembler insns as recognized from rtl. - Copyright (C) 1987, 1988, 1992, 1994, 1995 Free Software Foundation, Inc. + Copyright (C) 1987, 88, 92, 94, 95, 1997 Free Software Foundation, Inc. This file is part of GNU CC. @@ -581,7 +581,10 @@ process_template (d, template) printf (" \""); while (*cp != '\n' && *cp != '\0') - putchar (*cp++); + { + putchar (*cp); + cp++; + } printf ("\",\n"); i++; @@ -601,7 +604,11 @@ process_template (d, template) VAX-11 "C" on VMS. It is the equivalent of: printf ("%s\n", &template[1])); */ cp = &template[1]; - while (*cp) putchar (*cp++); + while (*cp) + { + putchar (*cp); + cp++; + } putchar ('\n'); } |