diff options
Diffstat (limited to 'gcc/java/lang.c')
-rw-r--r-- | gcc/java/lang.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/java/lang.c b/gcc/java/lang.c index ae03896..5f95f2d 100644 --- a/gcc/java/lang.c +++ b/gcc/java/lang.c @@ -232,10 +232,7 @@ lang_decode_option (argc, argv) p += 2; - for (j = 0; - !found - && j < (int)(sizeof (lang_f_options) / sizeof (lang_f_options[0])); - j++) + for (j = 0; !found && j < (int) ARRAY_SIZE (lang_f_options); j++) { if (!strcmp (p, lang_f_options[j].string)) { |