public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/52161] New: Internal compiler errors with -fcheck=bounds in coarray tests
@ 2012-02-07 21:47 dominiq at lps dot ens.fr
  2012-11-28 15:13 ` [Bug fortran/52161] " dominiq at lps dot ens.fr
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: dominiq at lps dot ens.fr @ 2012-02-07 21:47 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52161

             Bug #: 52161
           Summary: Internal compiler errors with -fcheck=bounds in
                    coarray tests
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: dominiq@lps.ens.fr
                CC: burnus@net-b.de


Compiling the tests gfortran.dg/coarray_2.f90 and
gfortran.dg/coarray/sync_1.f90 with -fcheck=bounds gives an internal compiler
error:

#0  fold_convert_loc (loc=<value optimized out>, type=<value optimized out>,
arg=<value optimized out>) at ../../work/gcc/fold-const.c:1856
#1  0x0000000100119ffc in gfc_trans_sync (code=<value optimized out>,
type=<value optimized out>) at ../../work/gcc/fortran/trans-stmt.c:773
#2  0x00000001000b8828 in trans_code (code=<value optimized out>, cond=<value
optimized out>) at ../../work/gcc/fortran/trans.c:1457
#3  0x00000001000e1d14 in gfc_generate_function_code (ns=<value optimized out>)
at ../../work/gcc/fortran/trans-decl.c:5344
#4  0x000000010007501d in gfc_parse_file () at
../../work/gcc/fortran/parse.c:4455
#5  0x00000001000b38d6 in gfc_be_parse_file () at
../../work/gcc/fortran/f95-lang.c:250
#6  0x00000001007b8741 in toplev_main (argc=4, argv=0x7fff5fbfd7a0) at
../../work/gcc/toplev.c:557
#7  0x0000000100001a94 in start ()

or

#0  fold_convert_loc (loc=<value optimized out>, type=<value optimized out>,
arg=<value optimized out>) at ../../work/gcc/fold-const.c:1856
#1  0x0000000100119ffc in gfc_trans_sync (code=<value optimized out>,
type=<value optimized out>) at ../../work/gcc/fortran/trans-stmt.c:773
#2  0x00000001000b8828 in trans_code (code=<value optimized out>, cond=<value
optimized out>) at ../../work/gcc/fortran/trans.c:1457
#3  0x0000000100116554 in gfc_trans_if_1 (code=<value optimized out>) at
../../work/gcc/fortran/trans-stmt.c:963
#4  0x000000010011a8fb in gfc_trans_if (code=<value optimized out>) at
../../work/gcc/fortran/trans-stmt.c:994
#5  0x00000001000b8938 in trans_code (code=<value optimized out>, cond=<value
optimized out>) at ../../work/gcc/fortran/trans.c:1416
#6  0x00000001000e1d14 in gfc_generate_function_code (ns=<value optimized out>)
at ../../work/gcc/fortran/trans-decl.c:5344
#7  0x000000010007501d in gfc_parse_file () at
../../work/gcc/fortran/parse.c:4455
#8  0x00000001000b38d6 in gfc_be_parse_file () at
../../work/gcc/fortran/f95-lang.c:250
#9  0x00000001007b8741 in toplev_main (argc=4, argv=0x7fff5fbfd790) at
../../work/gcc/toplev.c:557
#10 0x0000000100001a94 in start ()


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug fortran/52161] Internal compiler errors with -fcheck=bounds in coarray tests
  2012-02-07 21:47 [Bug fortran/52161] New: Internal compiler errors with -fcheck=bounds in coarray tests dominiq at lps dot ens.fr
@ 2012-11-28 15:13 ` dominiq at lps dot ens.fr
  2012-11-28 16:04 ` burnus at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: dominiq at lps dot ens.fr @ 2012-11-28 15:13 UTC (permalink / raw)
  To: gcc-bugs


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52161

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> 2012-11-28 15:12:52 UTC ---
Still there at revision 193884.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug fortran/52161] Internal compiler errors with -fcheck=bounds in coarray tests
  2012-02-07 21:47 [Bug fortran/52161] New: Internal compiler errors with -fcheck=bounds in coarray tests dominiq at lps dot ens.fr
  2012-11-28 15:13 ` [Bug fortran/52161] " dominiq at lps dot ens.fr
@ 2012-11-28 16:04 ` burnus at gcc dot gnu.org
  2012-11-28 21:42 ` burnus at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: burnus at gcc dot gnu.org @ 2012-11-28 16:04 UTC (permalink / raw)
  To: gcc-bugs


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52161

Tobias Burnus <burnus at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |burnus at gcc dot gnu.org

--- Comment #2 from Tobias Burnus <burnus at gcc dot gnu.org> 2012-11-28 16:03:46 UTC ---
Untested patch:

--- a/gcc/fortran/trans-stmt.c
+++ b/gcc/fortran/trans-stmt.c
@@ -797,3 +797,3 @@ gfc_trans_sync (gfc_code *code, gfc_exec_op type)
                               "%d in SYNC IMAGES",
-                              fold_convert (integer_type_node, se.expr));
+                              fold_convert (integer_type_node, images));
     }


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug fortran/52161] Internal compiler errors with -fcheck=bounds in coarray tests
  2012-02-07 21:47 [Bug fortran/52161] New: Internal compiler errors with -fcheck=bounds in coarray tests dominiq at lps dot ens.fr
  2012-11-28 15:13 ` [Bug fortran/52161] " dominiq at lps dot ens.fr
  2012-11-28 16:04 ` burnus at gcc dot gnu.org
@ 2012-11-28 21:42 ` burnus at gcc dot gnu.org
  2012-11-28 21:58 ` burnus at gcc dot gnu.org
  2012-11-29  8:44 ` burnus at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: burnus at gcc dot gnu.org @ 2012-11-28 21:42 UTC (permalink / raw)
  To: gcc-bugs


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52161

--- Comment #3 from Tobias Burnus <burnus at gcc dot gnu.org> 2012-11-28 21:42:21 UTC ---
Author: burnus
Date: Wed Nov 28 21:42:17 2012
New Revision: 193908

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=193908
Log:
2012-11-28  Tobias Burnus  <burnus@net-b.de>

        PR fortran/52161
        * trans-stmt.c (gfc_trans_sync): Fix bound checking.


2012-11-28  Tobias Burnus  <burnus@net-b.de>

        PR fortran/52161
        * coarray/sync_3.f90: New.


Added:
    trunk/gcc/testsuite/gfortran.dg/coarray/sync_3.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/trans-stmt.c
    trunk/gcc/testsuite/ChangeLog


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug fortran/52161] Internal compiler errors with -fcheck=bounds in coarray tests
  2012-02-07 21:47 [Bug fortran/52161] New: Internal compiler errors with -fcheck=bounds in coarray tests dominiq at lps dot ens.fr
                   ` (2 preceding siblings ...)
  2012-11-28 21:42 ` burnus at gcc dot gnu.org
@ 2012-11-28 21:58 ` burnus at gcc dot gnu.org
  2012-11-29  8:44 ` burnus at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: burnus at gcc dot gnu.org @ 2012-11-28 21:58 UTC (permalink / raw)
  To: gcc-bugs


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52161

Tobias Burnus <burnus at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED

--- Comment #4 from Tobias Burnus <burnus at gcc dot gnu.org> 2012-11-28 21:57:53 UTC ---
FIXED (on the 4.8 trunk).

Thanks for the report!


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug fortran/52161] Internal compiler errors with -fcheck=bounds in coarray tests
  2012-02-07 21:47 [Bug fortran/52161] New: Internal compiler errors with -fcheck=bounds in coarray tests dominiq at lps dot ens.fr
                   ` (3 preceding siblings ...)
  2012-11-28 21:58 ` burnus at gcc dot gnu.org
@ 2012-11-29  8:44 ` burnus at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: burnus at gcc dot gnu.org @ 2012-11-29  8:44 UTC (permalink / raw)
  To: gcc-bugs


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52161

--- Comment #5 from Tobias Burnus <burnus at gcc dot gnu.org> 2012-11-29 08:43:57 UTC ---
Author: burnus
Date: Thu Nov 29 08:43:48 2012
New Revision: 193924

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=193924
Log:
2012-11-28  Tobias Burnus  <burnus@net-b.de>

        PR fortran/52161
        * trans-stmt.c (gfc_trans_sync): Fix bound checking
        for -fcoarray=lib.

2012-11-28  Tobias Burnus  <burnus@net-b.de>

        PR fortran/52161
        * coarray/sync_3.f90: Extend test.


Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/trans-stmt.c
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gfortran.dg/coarray/sync_3.f90


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-11-29  8:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-07 21:47 [Bug fortran/52161] New: Internal compiler errors with -fcheck=bounds in coarray tests dominiq at lps dot ens.fr
2012-11-28 15:13 ` [Bug fortran/52161] " dominiq at lps dot ens.fr
2012-11-28 16:04 ` burnus at gcc dot gnu.org
2012-11-28 21:42 ` burnus at gcc dot gnu.org
2012-11-28 21:58 ` burnus at gcc dot gnu.org
2012-11-29  8:44 ` burnus at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).