diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-08-15 18:59:44 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-08-15 18:59:44 +0000 |
commit | 7a35406b20823b1f1eda65bbab92bb93faa7edb8 (patch) | |
tree | aeaea36bff4fe3b921c073ce5557a6a162e972d7 /gcc/gen-protos.c | |
parent | 984c9abdf96eb065cbb434b608f190a910a7cd21 (diff) | |
download | gcc-7a35406b20823b1f1eda65bbab92bb93faa7edb8.tar.gz |
* sys-protos.h (gethostid): Make return type `int' ifdef __alpha__.
* gen-protos.c: Delete support for SYS_PROTO_OVERRIDES.
* alpha/alpha.h (SYS_PROTO_OVERRIDES): Delete.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12642 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gen-protos.c')
-rw-r--r-- | gcc/gen-protos.c | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/gcc/gen-protos.c b/gcc/gen-protos.c index 47cf87e6018..0284c18ba4a 100644 --- a/gcc/gen-protos.c +++ b/gcc/gen-protos.c @@ -25,15 +25,6 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ int verbose = 0; char *progname; -/* Table of prototypes that override sys-protos.h. */ -static char *overrides[] = -{ -#ifdef SYS_PROTO_OVERRIDES - SYS_PROTO_OVERRIDES -#endif - 0 -}; - #define HASH_SIZE 2503 /* a prime */ int hash_tab[HASH_SIZE]; int next_index; @@ -171,29 +162,6 @@ main (argc, argv) fprintf (outf, " {\"\", \"\", \"\"},\n"); next_index = 1; - /* Output the overriding prototypes first so fix-header will use them - in preference to the default ones. */ - /* ??? Two copies of the prototype are output. This doesn't cause any - problems, but one might wish to avoid outputting the second one. */ - - for (optr = overrides; *optr; ++optr) - { - /* Using sstring's here may be overkill but parse_fn_proto modifies - the input string. */ - linebuf.ptr = linebuf.base; - make_sstring_space (&linebuf, strlen (*optr) + 1); - strcpy (linebuf.base, *optr); - linebuf.ptr = linebuf.base + strlen (*optr); - - if (! parse_fn_proto (linebuf.base, linebuf.ptr, &fn_decl)) - continue; - - add_hash (fn_decl.fname); - - fprintf (outf, " {\"%s\", \"%s\", \"%s\"},\n", - fn_decl.fname, fn_decl.rtype, fn_decl.params); - } - for (;;) { int c = skip_spaces (inf, ' '); |