aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/resolve.c
diff options
context:
space:
mode:
authorTobias Schlüter <tobias.schlueter@physik.uni-muenchen.de>2004-06-15 23:50:50 +0200
committerTobias Schlüter <tobi@gcc.gnu.org>2004-06-15 23:50:50 +0200
commit6ef4215401ab8001886973790886dfd75446c037 (patch)
tree91cec34fb614da23cba18dd77a187546799cb659 /gcc/fortran/resolve.c
parent0173bb6f2d715c4c3839c17e26a38bd522e07fa4 (diff)
downloadgcc-6ef4215401ab8001886973790886dfd75446c037.zip
gcc-6ef4215401ab8001886973790886dfd75446c037.tar.gz
gcc-6ef4215401ab8001886973790886dfd75446c037.tar.bz2
re PR fortran/15962 (constant expression not recognized as such)
fortran/ PR fortran/15962 * match.c (match_case_selector): Call gfc_match_init_expr instead of gfc_match_expr. * resolve.c (validate_case_label_expr): No need to check for constant, since it wouldn't have been matched with the fix to match.c. testsuite/ PR fortran/15962 * gfortran.fortran-torture/execute/select_1.f90: New test. From-SVN: r83202
Diffstat (limited to 'gcc/fortran/resolve.c')
-rw-r--r--gcc/fortran/resolve.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc/fortran/resolve.c b/gcc/fortran/resolve.c
index d33dcb2..b19721f 100644
--- a/gcc/fortran/resolve.c
+++ b/gcc/fortran/resolve.c
@@ -2586,13 +2586,6 @@ validate_case_label_expr (gfc_expr * e, gfc_expr * case_expr)
if (e == NULL) return SUCCESS;
- if (e->expr_type != EXPR_CONSTANT)
- {
- gfc_error ("Expression in CASE statement at %L must be a constant",
- &e->where);
- return FAILURE;
- }
-
if (e->ts.type != case_ts.type)
{
gfc_error ("Expression in CASE statement at %L must be of type %s",