* parse.c (emit_label): Fix return-type of prototype.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Wed, 30 Sep 1998 17:24:36 +0000 (17:24 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Wed, 30 Sep 1998 17:24:36 +0000 (17:24 +0000)
From-SVN: r22683

gcc/ch/ChangeLog
gcc/ch/parse.c

index ebada8729c46568a999432c8dbb8f5d8b9064ab7..316a87ded21ade12d75e0c3460a90d37d2964da1 100644 (file)
@@ -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
index bf2bda053369e830ef103a87f4780394f17aa5af..fea4581044b3f8ea078ed3d4ca8fb2237a6d3d5f 100644 (file)
@@ -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));