diff options
author | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1998-02-27 08:23:47 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1998-02-27 08:23:47 +0000 |
commit | 5987a4f34ae693fa52d4f0c4adf136f6becb8984 (patch) | |
tree | 65c26b6cae5dd8cbc0d7916923e75eae3ae564c6 /gcc/genpeep.c | |
parent | 81ce6e9a35c49a2f937b8b1d992c153ace6e3163 (diff) | |
download | gcc-5987a4f34ae693fa52d4f0c4adf136f6becb8984.zip gcc-5987a4f34ae693fa52d4f0c4adf136f6becb8984.tar.gz gcc-5987a4f34ae693fa52d4f0c4adf136f6becb8984.tar.bz2 |
genattr.c: Wrap prototype of `free' in NEED_DECLARATION_FREE.
* genattr.c: Wrap prototype of `free' in NEED_DECLARATION_FREE.
* genattrtab.c: Likewise.
* genconfig.c: Likewise.
* genemit.c: Likewise.
* genextract.c: Likewise.
* genflags.c: Likewise.
* genopinit.c: Likewise.
* genoutput.c: Likewise.
* genpeep.c: Likewise.
* genrecog.c: Likewise.
* tlink.c: Likewise. Also wrap `getenv' in NEED_DECLARATION_GETENV.
From-SVN: r18284
Diffstat (limited to 'gcc/genpeep.c')
-rw-r--r-- | gcc/genpeep.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/genpeep.c b/gcc/genpeep.c index 357376b..3a765a7 100644 --- a/gcc/genpeep.c +++ b/gcc/genpeep.c @@ -1,5 +1,5 @@ /* Generate code from machine description to perform peephole optimizations. - Copyright (C) 1987, 1989, 1992, 1997 Free Software Foundation, Inc. + Copyright (C) 1987, 1989, 1992, 1997, 1998 Free Software Foundation, Inc. This file is part of GNU CC. @@ -34,7 +34,9 @@ struct obstack *rtl_obstack = &obstack; #define obstack_chunk_alloc xmalloc #define obstack_chunk_free free +#ifdef NEED_DECLARATION_FREE extern void free (); +#endif extern rtx read_rtx (); /* While tree-walking an instruction pattern, we keep a chain |