summaryrefslogtreecommitdiff
path: root/gcc/mips-tdump.c
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>1999-09-14 18:19:09 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>1999-09-14 18:19:09 +0000
commit431823050625fd3893f5031520e91eafb9eb85a8 (patch)
tree1e9afbcb55cdfa686ce8918bf81ce92b95aee8fd /gcc/mips-tdump.c
parent9b7006ea745d29eef49e7de4ccee94067aef3a8b (diff)
downloadgcc-431823050625fd3893f5031520e91eafb9eb85a8.tar.gz
* c-pragma.c (handle_pragma_token): Wrap variables `name' and
`value' in HANDLE_PRAGMA_WEAK. Wrap variable `align' in HANDLE_PRAGMA_PACK||HANDLE_PRAGMA_PACK_PUSH_POP. * genrecog.c (make_insn_sequence): Call memset, not bzero. * jump.c (find_insert_position): Don't declare or define unless !HAVE_conditional_arithmetic. (returnjump_p_1, delete_prior_computation): Add static prototypes. * mips-tdump.c (fatal, fancy_abort, main): Add extern prototypes. * recog.c (offsettable_address_p): Prototype function pointer. (preprocess_constraints): Call memset, not bzero. * tree.c (tree_node_kind_names): Constify a char*. Make static. (gcc_obstack_init): Don't declare. (fix_sizetype): Add static prototype. (gcc_obstack_init): Use prototype casts in call to _obstack_begin. (tree_cons): Call memset, not bzero. * varasm.c (remove_from_pending_weak_list): Wrap declaration and definition in macro ASM_WEAKEN_LABEL. (mark_const_hash_entry): Add static prototype. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29410 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/mips-tdump.c')
-rw-r--r--gcc/mips-tdump.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/mips-tdump.c b/gcc/mips-tdump.c
index d82d0ac6c2e..ce64687ecac 100644
--- a/gcc/mips-tdump.c
+++ b/gcc/mips-tdump.c
@@ -56,8 +56,10 @@ typedef const PTR_T CPTR_T;
#define uint unsigned int
#define ulong unsigned long
-
-static void
+void fatal PROTO ((const char *)) ATTRIBUTE_NORETURN;
+void fancy_abort PROTO ((void)) ATTRIBUTE_NORETURN;
+
+void
fatal(s)
const char *s;
{
@@ -1439,6 +1441,8 @@ read_tfile __proto((void))
+extern int main PROTO ((int, char **));
+
int
main (argc, argv)
int argc;