re PR fortran/15962 (constant expression not recognized as such)
authorTobias Schlüter <tobias.schlueter@physik.uni-muenchen.de>
Tue, 15 Jun 2004 21:50:50 +0000 (23:50 +0200)
committerTobias Schlüter <tobi@gcc.gnu.org>
Tue, 15 Jun 2004 21:50:50 +0000 (23:50 +0200)
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

gcc/fortran/ChangeLog
gcc/fortran/match.c
gcc/fortran/resolve.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.fortran-torture/execute/select_1.f90 [new file with mode: 0644]
gcc/testsuite/lib/f-torture.exp

index 57a9164b2d09d00ed414099b7944c2597830a7b4..ef5d72bac394b3cfb50c47707ff0cbe433bc0db9 100644 (file)
@@ -1,3 +1,12 @@
+2004-06-15  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
+
+       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.
+
 2004-06-14  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
 
        PR fortran/15211
index 79a7e4c73b2235d0ab68dfe25e3cb896f2d4dba1..bc2379db49c21461e9e617d87fac6754706c5599 100644 (file)
@@ -3102,7 +3102,7 @@ match_case_selector (gfc_case ** cp)
 
   if (gfc_match_char (':') == MATCH_YES)
     {
-      m = gfc_match_expr (&c->high);
+      m = gfc_match_init_expr (&c->high);
       if (m == MATCH_NO)
        goto need_expr;
       if (m == MATCH_ERROR)
@@ -3111,7 +3111,7 @@ match_case_selector (gfc_case ** cp)
 
   else
     {
-      m = gfc_match_expr (&c->low);
+      m = gfc_match_init_expr (&c->low);
       if (m == MATCH_ERROR)
        goto cleanup;
       if (m == MATCH_NO)
@@ -3123,7 +3123,7 @@ match_case_selector (gfc_case ** cp)
        c->high = c->low;
       else
        {
-         m = gfc_match_expr (&c->high);
+         m = gfc_match_init_expr (&c->high);
          if (m == MATCH_ERROR)
            goto cleanup;
          /* MATCH_NO is fine.  It's OK if nothing is there!  */
@@ -3134,7 +3134,7 @@ match_case_selector (gfc_case ** cp)
   return MATCH_YES;
 
 need_expr:
-  gfc_error ("Expected expression in CASE at %C");
+  gfc_error ("Expected initialization expression in CASE at %C");
 
 cleanup:
   free_case (c);
index d33dcb211767bb308cd10994ec083ef7bae32d1e..b19721f1432e187dcc82f24127de6192e1a7a492 100644 (file)
@@ -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",
index dc1100d2e3bcf9f7e2d7c131fd868663d9bf37b2..2d74fb607519ec1fb81ec8c2dc840657566dc937 100644 (file)
@@ -1,3 +1,8 @@
+2004-06-15  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
+
+       PR fortran/15962
+       * gfortran.fortran-torture/execute/select_1.f90: New test.
+
 2004-06-15  Paul Brook  <paul@codesourcery.com>
 
        * gcc.dg/arm-mmx-1.c: Use asm to clobber registers.
diff --git a/gcc/testsuite/gfortran.fortran-torture/execute/select_1.f90 b/gcc/testsuite/gfortran.fortran-torture/execute/select_1.f90
new file mode 100644 (file)
index 0000000..b6ed5be
--- /dev/null
@@ -0,0 +1,17 @@
+! from PR 15962, we used to require constant expressions instead of
+! initialization expressions in case-statements
+function x(k)
+integer :: k
+integer :: x
+integer, parameter :: i(2) = (/1,2/)
+
+select case(k)
+case (1:size(i))
+    x = i(k)
+case default
+    x = 0
+end select
+end function
+
+if (x(2).NE.2 .OR. x(11).NE.0) call abort()
+end
index 88e8773a07a4d22b39c446455ed3992642136e57..61ff48575616cc37f3dd236a2690b14fa06e4982 100644 (file)
@@ -124,135 +124,7 @@ proc f-torture-compile { src option } {
 #
 # f-torture-execute -- utility to compile and execute a testcase
 #
-# SRC is the full pathname of the testcase.
-#
-# If the testcase has an associated .x file, we source that to run the
-# test instead.  We use .x so that we don't lengthen the existing filename
-# to more than 14 chars.
-#
-proc f-torture-execute { src } {
-    global tmpdir tool srcdir output compiler_conditional_xfail_data
-
-    # Check for alternate driver.
-    if [file exists [file rootname $src].x] {
-       verbose "Using alternate driver [file rootname [file tail $src]].x" 2
-       set done_p 0
-       catch "set done_p \[source [file rootname $src].x\]"
-       if { $done_p } {
-           return
-       }
-    }
-   
-    # Look for a loop within the source code - if we don't find one,
-    # don't pass -funroll[-all]-loops.
-    global torture_with_loops torture_without_loops
-    if [expr [search_for_re $src "do *\[0-9\]"]+[search_for_re $src "end *do"]] then {
-       set option_list $torture_with_loops
-    } else {
-       set option_list $torture_without_loops
-    }
-
-    set executable $tmpdir/[file tail [file rootname $src].x]
-
-    regsub "^$srcdir/?" $src "" testcase
-    # If we couldn't rip $srcdir out of `src' then just do the best we can.
-    # The point is to reduce the unnecessary noise in the logs.  Don't strip
-    # out too much because different testcases with the same name can confuse
-    # `test-tool'.
-    if [string match "/*" $testcase] {
-       set testcase "[file tail [file dirname $src]]/[file tail $src]"
-    }
-
-    foreach option $option_list {
-       # torture_{compile,execute}_xfail are set by the .x script
-       # (if present)
-       if [info exists torture_compile_xfail] {
-           setup_xfail $torture_compile_xfail
-       }
-
-       # torture_execute_before_{compile,execute} can be set by the .x script
-       # (if present)
-       if [info exists torture_eval_before_compile] {
-            set ignore_me [eval $torture_eval_before_compile]
-       }
-
-       remote_file build delete $executable
-       verbose "Testing $testcase, $option" 1
-
-       set options ""
-       lappend options "additional_flags=-w $option"
-       set comp_output [g77_target_compile "$src" "$executable" executable $options];
-
-       # Set a few common compiler messages.
-       set fatal_signal "*77*: Internal compiler error: program*got fatal signal"
-       
-       if [string match "$fatal_signal 6" $comp_output] then {
-           g77_fail $testcase "Got Signal 6, $option"
-           remote_file build delete $executable
-           continue
-       }
-       
-       if [string match "$fatal_signal 11" $comp_output] then {
-           g77_fail $testcase "Got Signal 11, $option"
-           remote_file build delete $executable
-           continue
-       }
-       
-       # We shouldn't get these because of -w, but just in case.
-       if [string match "*77*:*warning:*" $comp_output] then {
-           warning "$testcase: (with warnings) $option"
-           send_log "$comp_output\n"
-           unresolved "$testcase, $option"
-           remote_file build delete $executable
-           continue
-       }
-       
-       set comp_output [prune_warnings $comp_output]
-       
-       set unsupported_message [g77_check_unsupported_p $comp_output]
-
-       if { $unsupported_message != "" } {
-           unsupported "$testcase: $unsupported_message"
-           continue
-       } elseif ![file exists $executable] {
-           if ![is3way] {
-               fail "$testcase compilation, $option"
-               untested "$testcase execution, $option"
-               continue
-           } else {
-               # FIXME: since we can't test for the existance of a remote
-               # file without short of doing an remote file list, we assume
-               # that since we got no output, it must have compiled.
-               pass "$testcase compilation, $option"           
-           }
-       } else {
-           pass "$testcase compilation, $option"
-       }
-
-       # See if this source file uses "long long" types, if it does, and
-       # no_long_long is set, skip execution of the test.
-       if [target_info exists no_long_long] then {
-           if [expr [search_for_re $src "integer\*8"]] then {
-               untested "$testcase execution, $option"
-               continue
-           }
-       }
-
-       if [info exists torture_execute_xfail] {
-           setup_xfail $torture_execute_xfail
-       }
-
-       if [info exists torture_eval_before_execute] {
-            set ignore_me [eval $torture_eval_before_execute]
-       }
-
-       set result [g77_load "$executable" "" ""]
-       set status [lindex $result 0];
-       set output [lindex $result 1];
-        if { $status == "pass" } {
-           remote_file build delete $executable
-        }
-       $status "$testcase execution, $option"
+# SRC is the full pathname of the
     }
 }