From a558d86409c2e9f75710b1f59fc98cb166ebb845 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sat, 12 Mar 1994 07:38:00 -0500 Subject: [PATCH] Added \n to printf to shorten line for VAX-C. From-SVN: r6757 --- gcc/genemit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/genemit.c b/gcc/genemit.c index 6feb972ebcc..5b60f465b60 100644 --- a/gcc/genemit.c +++ b/gcc/genemit.c @@ -1,5 +1,5 @@ /* Generate code from machine description to emit insns as rtl. - Copyright (C) 1987, 1988, 1991 Free Software Foundation, Inc. + Copyright (C) 1987, 1988, 1991, 1994 Free Software Foundation, Inc. This file is part of GNU CC. @@ -236,7 +236,7 @@ gen_exp (x) { if (fmt[i] == '0') break; - printf (", "); + printf (",\n\t"); if (fmt[i] == 'e' || fmt[i] == 'u') gen_exp (XEXP (x, i)); else if (fmt[i] == 'i')