From c1daea12d528ddc803fe5710aaade0767abbe661 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Wed, 30 Sep 1998 17:24:36 +0000 Subject: [PATCH] * parse.c (emit_label): Fix return-type of prototype. From-SVN: r22683 --- gcc/ch/ChangeLog | 4 ++++ gcc/ch/parse.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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)); -- 2.30.2