summaryrefslogtreecommitdiff
path: root/gcc/ch
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>1998-09-30 17:24:36 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>1998-09-30 17:24:36 +0000
commit696a9c4eeab076e14744b1b62342b4ab2647a0f8 (patch)
treefa841c0c0a5cf6aeb9848417a2da20579b5f4189 /gcc/ch
parenta3a64825006605c8428533670ec28c73f8e3498b (diff)
downloadgcc-696a9c4eeab076e14744b1b62342b4ab2647a0f8.tar.gz
* parse.c (emit_label): Fix return-type of prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22683 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ch')
-rw-r--r--gcc/ch/ChangeLog4
-rw-r--r--gcc/ch/parse.c2
2 files changed, 5 insertions, 1 deletions
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 <ghazi@caip.rutgers.edu>
+
+ * parse.c (emit_label): Fix return-type of prototype.
+
Wed Sep 30 19:41:36 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* 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));