summaryrefslogtreecommitdiff
path: root/gcc/except.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2000-01-05 06:55:02 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2000-01-05 06:55:02 +0000
commit4f3b25bd1bc9c5b87f408bda0eafc6f45455ac10 (patch)
tree3b3c08aae28d90b998b0682832af59be16e48f95 /gcc/except.c
parentd601cf7a3ba60bcc6a925bfaa6b1d3aee40b8b11 (diff)
downloadgcc-4f3b25bd1bc9c5b87f408bda0eafc6f45455ac10.tar.gz
* cse.c (cse_insn): Missing cast added.
* loop.c (loop_reg_used_before_p): Ditto. * gcse.c (Pre_gcse, hoist_code): Ditto. * varasm.c (decode_rtx_const): Ditto. * except.c (push_ehqueue): Ditto. * cccp.c (index0): Ditto. * toplev.c (main): Useless `&' removed before function name. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31229 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/except.c')
-rw-r--r--gcc/except.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/except.c b/gcc/except.c
index f90fdc93d8b..b93f9bf3f5a 100644
--- a/gcc/except.c
+++ b/gcc/except.c
@@ -1,5 +1,5 @@
/* Implements exception handling.
- Copyright (C) 1989, 1992-1999 Free Software Foundation, Inc.
+ Copyright (C) 1989, 1992-1999, 2000 Free Software Foundation, Inc.
Contributed by Mike Stump <mrs@cygnus.com>.
This file is part of GNU CC.
@@ -1793,7 +1793,7 @@ void
push_ehqueue ()
{
struct eh_queue *q;
- q = xcalloc (1, sizeof (struct eh_queue));
+ q = (struct eh_queue *) xcalloc (1, sizeof (struct eh_queue));
q->next = ehqueue;
ehqueue = q;
}