diff options
Diffstat (limited to 'gcc/java')
-rw-r--r-- | gcc/java/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/java/lang.c | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 2c6d3f9c573..f06a3c675ac 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,7 @@ +2003-06-07 Neil Booth <neil@daikokuya.co.uk> + + * lang.c (java_init_options): Update. + Thu Jun 5 18:33:40 CEST 2003 Jan Hubicka <jh@suse.cz> * Make-lang.in: Add support for stageprofile and stagefeedback diff --git a/gcc/java/lang.c b/gcc/java/lang.c index 918be0a5d7d..28be548e887 100644 --- a/gcc/java/lang.c +++ b/gcc/java/lang.c @@ -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 |