aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKaveh Ghazi <ghazi@gcc.gnu.org>2003-05-21 00:47:44 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2003-05-21 00:47:44 +0000
commitc1625e69f775b74a51105b936d11aa2a0ca580fc (patch)
treefc851a4772b285e75ed117ad0d10221e363840eb /gcc
parent16e31964115f929a2f68fbce36cff148849b52bd (diff)
downloadgcc-c1625e69f775b74a51105b936d11aa2a0ca580fc.zip
gcc-c1625e69f775b74a51105b936d11aa2a0ca580fc.tar.gz
gcc-c1625e69f775b74a51105b936d11aa2a0ca580fc.tar.bz2
Concatenate one of the fprintf calls in the previous change.
From-SVN: r67050
Diffstat (limited to 'gcc')
-rw-r--r--gcc/genautomata.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/genautomata.c b/gcc/genautomata.c
index 9015f8c..e72b52c 100644
--- a/gcc/genautomata.c
+++ b/gcc/genautomata.c
@@ -9358,9 +9358,8 @@ output_description ()
decl = description->decls [i];
if (decl->mode == dm_reserv)
{
- fprintf (output_description_file, "reservation ");
- fprintf (output_description_file, "%s", DECL_RESERV (decl)->name);
- fprintf (output_description_file, ": ");
+ fprintf (output_description_file, "reservation %s: ",
+ DECL_RESERV (decl)->name);
output_regexp (DECL_RESERV (decl)->regexp);
fprintf (output_description_file, "\n");
}