]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/java/lang.c
Makefile.in (OJBS, c-opts.o): Update.
[thirdparty/gcc.git] / gcc / java / lang.c
index 918be0a5d7d5c04b8fd2ea350176f51a957087e9..28be548e8879d48b53b5c5fee3e81d30aeb53b2d 100644 (file)
@@ -55,7 +55,7 @@ struct string_option
 
 static bool java_init (void);
 static void java_finish (void);
-static void java_init_options (void);
+static int java_init_options (void);
 static bool java_post_options (const char **);
 
 static int java_decode_option (int, char **);
@@ -731,7 +731,7 @@ void lang_init_source (int level)
   inhibit_error_function_printing = (level == 1);
 }
 
-static void
+static int
 java_init_options (void)
 {
   flag_bounds_check = 1;
@@ -743,6 +743,8 @@ java_init_options (void)
 
   /* In Java arithmetic overflow always wraps around.  */
   flag_wrapv = 1;
+
+  return 0;
 }
 
 static bool