diff options
| author | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-05 16:47:01 +0000 |
|---|---|---|
| committer | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-05 16:47:01 +0000 |
| commit | 5ddc8fb8abd3a853d7196d8560bfb5f5dc4b6d3b (patch) | |
| tree | b4b6d439a80428f86d20e6cd0fdbdbb46509faa0 | |
| parent | b4c6b6f4af96a73a4ee914c69acea75989308b18 (diff) | |
| download | ppe42-gcc-5ddc8fb8abd3a853d7196d8560bfb5f5dc4b6d3b.tar.gz ppe42-gcc-5ddc8fb8abd3a853d7196d8560bfb5f5dc4b6d3b.zip | |
PR middle-end/9986
* pa.c (pa_init_builtins): Also set implicit_built_in_decls for
BUILT_IN_FPUTC_UNLOCKED to NULL_TREE.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67500 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/config/pa/pa.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1860a2cbe22..be404bf33d3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2003-06-05 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + + 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 <jh@suse.cz> * install.tex: Document profiledbootstrap. diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 0826467f616..547c21174dc 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 } |

