From: Kaveh R. Ghazi Date: Wed, 30 Sep 1998 17:24:36 +0000 (+0000) Subject: * parse.c (emit_label): Fix return-type of prototype. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c1daea12d528ddc803fe5710aaade0767abbe661;p=gcc.git * parse.c (emit_label): Fix return-type of prototype. From-SVN: r22683 --- diff --git a/gcc/ch/ChangeLog b/gcc/ch/ChangeLog index ebada8729c4..316a87ded21 100644 --- a/gcc/ch/ChangeLog +++ b/gcc/ch/ChangeLog @@ -1,3 +1,7 @@ +Wed Sep 30 20:22:34 1998 Kaveh R. Ghazi + + * parse.c (emit_label): Fix return-type of prototype. + Wed Sep 30 19:41:36 1998 Kaveh R. Ghazi * actions.c (chill_handle_multi_case_label): Always return a value diff --git a/gcc/ch/parse.c b/gcc/ch/parse.c index bf2bda05336..fea4581044b 100644 --- a/gcc/ch/parse.c +++ b/gcc/ch/parse.c @@ -71,7 +71,7 @@ char *language_string = "GNU CHILL"; extern struct rtx_def* gen_label_rtx PROTO((void)); extern void emit_jump PROTO((struct rtx_def *)); -extern void emit_label PROTO((struct rtx_def *)); +extern struct rtx_def* emit_label PROTO((struct rtx_def *)); static int parse_action PROTO((void));