public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/52093] New: Extra parenthesis with Size and Shape functions argument cause internal compiler error: Segmentation fault
@ 2012-02-02  7:37 m.rahmani at aut dot ac.ir
  2012-02-02  8:17 ` [Bug fortran/52093] [4.6/4.7 Regression] " dominiq at lps dot ens.fr
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: m.rahmani at aut dot ac.ir @ 2012-02-02  7:37 UTC (permalink / raw)
  To: gcc-bugs

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

             Bug #: 52093
           Summary: Extra parenthesis with Size and Shape functions
                    argument cause internal compiler error: Segmentation
                    fault
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: fortran
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: m.rahmani@aut.ac.ir


When you use extra parenthesis with size and shape argument, Fortran compiler
encounters the internal compiler error: Segmentation fault.

Test Case:
!--------------------------------------
 Program Main
 Implicit None
 Integer:: X(2,2)


 print*, size((X))
 !or
 Print*, Shape((X))

End Program Main
!--------------------------------------

Compiling the above test case produces the following error:

>>gfortran -c Testcase.f90   -fimplicit-none
 f951.exe: internal compiler error: Segmentation fault
 Please submit a full bug report,
 with preprocessed source if appropriate.
 See <http://gcc.gnu.org/bugs.html> for instructions.


By removing the extra parenthesis error goes away!!
i.e the following code works fine:

      print*, size(X)
      !or
      Print*, Shape(X)


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

end of thread, other threads:[~2012-02-03 21:54 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-02  7:37 [Bug fortran/52093] New: Extra parenthesis with Size and Shape functions argument cause internal compiler error: Segmentation fault m.rahmani at aut dot ac.ir
2012-02-02  8:17 ` [Bug fortran/52093] [4.6/4.7 Regression] " dominiq at lps dot ens.fr
2012-02-02  8:29 ` burnus at gcc dot gnu.org
2012-02-02  9:18 ` jakub at gcc dot gnu.org
2012-02-02 21:02 ` burnus at gcc dot gnu.org
2012-02-03 20:38 ` burnus at gcc dot gnu.org
2012-02-03 21:54 ` 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).