aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/top.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/f/top.c')
-rw-r--r--gcc/f/top.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/f/top.c b/gcc/f/top.c
index 0d6fb35e214..07ddd83740c 100644
--- a/gcc/f/top.c
+++ b/gcc/f/top.c
@@ -323,13 +323,13 @@ ffe_decode_option (argc, argv)
ffe_set_is_globals (TRUE);
else if (strcmp (&opt[2], "no-globals") == 0)
ffe_set_is_globals (FALSE);
- else if (strcmp (&opt[2], "subscript-check") == 0)
+ else if (strcmp (&opt[2], "bounds-check") == 0)
ffe_set_is_subscript_check (TRUE);
- else if (strcmp (&opt[2], "no-subscript-check") == 0)
+ else if (strcmp (&opt[2], "no-bounds-check") == 0)
ffe_set_is_subscript_check (FALSE);
- else if (strcmp (&opt[2], "f2c-subscript-check") == 0)
+ else if (strcmp (&opt[2], "fortran-bounds-check") == 0)
ffe_set_is_subscript_check (TRUE);
- else if (strcmp (&opt[2], "no-f2c-subscript-check") == 0)
+ else if (strcmp (&opt[2], "no-fortran-bounds-check") == 0)
ffe_set_is_subscript_check (FALSE);
else if (strcmp (&opt[2], "typeless-boz") == 0)
ffe_set_is_typeless_boz (TRUE);