This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix PR44930


Do not end NIY with a newline.

Committed as obvious.

Richard.

2010-07-14  Richard Guenther  <rguenther@suse.de>

	PR middle-end/44930
	* tree-pretty-print.c (do_niy): Do not print a newline.

Index: gcc/tree-pretty-print.c
===================================================================
*** gcc/tree-pretty-print.c	(revision 162140)
--- gcc/tree-pretty-print.c	(working copy)
*************** do_niy (pretty_printer *buffer, const_tr
*** 71,77 ****
  	}
      }
  
!   pp_string (buffer, " >>>\n");
  }
  
  /* Debugging function to print out a generic expression.  */
--- 71,77 ----
  	}
      }
  
!   pp_string (buffer, " >>>");
  }
  
  /* Debugging function to print out a generic expression.  */


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]