From: John David Anglin Date: Thu, 5 Jun 2003 16:47:01 +0000 (+0000) Subject: re PR middle-end/9986 ([HP-UX] [3.4 regression] Incorrect transformation of fputs_unl... X-Git-Tag: releases/gcc-3.4.0~6135 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eebfb2aa116c86d32cc146807551308bf704cfce;p=thirdparty%2Fgcc.git re PR middle-end/9986 ([HP-UX] [3.4 regression] Incorrect transformation of fputs_unlocked to fputc_unlocked) PR middle-end/9986 * pa.c (pa_init_builtins): Also set implicit_built_in_decls for BUILT_IN_FPUTC_UNLOCKED to NULL_TREE. From-SVN: r67500 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1860a2cbe22e..be404bf33d34 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2003-06-05 John David Anglin + + PR middle-end/9986 + * pa.c (pa_init_builtins): Also set implicit_built_in_decls for + BUILT_IN_FPUTC_UNLOCKED to NULL_TREE. + Thu Jun 5 18:32:46 CEST 2003 Jan Hubicka * install.tex: Document profiledbootstrap. diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 0826467f6161..547c21174dc8 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -351,6 +351,7 @@ pa_init_builtins () { #ifdef DONT_HAVE_FPUTC_UNLOCKED built_in_decls[(int) BUILT_IN_FPUTC_UNLOCKED] = NULL_TREE; + implicit_built_in_decls[(int) BUILT_IN_FPUTC_UNLOCKED] = NULL_TREE; #endif }