Commit a558d864 by Richard Kenner

Added \n to printf to shorten line for VAX-C.

From-SVN: r6757
parent fe701b40
/* Generate code from machine description to emit insns as rtl. /* 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. This file is part of GNU CC.
...@@ -236,7 +236,7 @@ gen_exp (x) ...@@ -236,7 +236,7 @@ gen_exp (x)
{ {
if (fmt[i] == '0') if (fmt[i] == '0')
break; break;
printf (", "); printf (",\n\t");
if (fmt[i] == 'e' || fmt[i] == 'u') if (fmt[i] == 'e' || fmt[i] == 'u')
gen_exp (XEXP (x, i)); gen_exp (XEXP (x, i));
else if (fmt[i] == 'i') else if (fmt[i] == 'i')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment