public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "oleg.steblev at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/46588] New: Segfault on automatic function
Date: Sun, 21 Nov 2010 12:59:00 -0000	[thread overview]
Message-ID: <bug-46588-4@http.gcc.gnu.org/bugzilla/> (raw)

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

           Summary: Segfault on automatic function
           Product: gcc
           Version: 4.3.2
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P3
         Component: fortran
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: oleg.steblev@gmail.com


$ cat check.f90
program ds
implicit none
character(len = 4) :: ins = '+ - '
character(len = 20) st, aufun 
st = aufun(ins) ! результата равна n
print *, st
end

function aufun(pm)
character(len = *) pm
character(len = *) aufun
character(len = len(aufun)) temp 
temp = pm // pm //pm // pm 
aufun = '# ' // trim(temp) // ' #'
end

$ gfortran -v check.f90
Target: i686-pc-cygwin
compiled by GNU C version 4.3.2 20080827 (beta) 2, GMP version 4.2.4, MPFR
version 2.4.1.
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
check.f90:7: 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.

$cat check2.f90
function aufun(pm)
character(len = *) pm
character(len = *) aufun
SAVE character(len = len(aufun)) temp 
temp = pm // pm //pm // pm 
aufun = '# ' // trim(temp) // ' #'
end

$ gfortran check2.f90
check2.f90:4.15:

 SAVE character(len = len(afun)) temp ! \xD1\xF2\xF0\xEE\xEA\xE0 temp -
\xEF\xF0\xE8\xEC\xE5\xF0
              1
Error: Syntax error in SAVE statement at (1)
check2.f90:5.8:

 temp = pm // pm //pm // pm !
\xE0\xE2\xF2\xEE\xEC\xE0\xF2\xE8\xF7\xE5\xF1\xEA\xEE\xE3\xEE
\xEE\xE1\xFA\xE5\xEA
xF2\xE0 \xE4\xE0\xED\xED\xFB\xF5
       1
Error: Can't convert CHARACTER(1) to REAL(4) at (1)
check2.f90:6.23:

 aufun = '# ' // trim(temp) // ' #'
                      1
Error: 'string' argument of 'trim' intrinsic at (1) must be CHARACTER


             reply	other threads:[~2010-11-21 12:19 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-11-21 12:59 oleg.steblev at gmail dot com [this message]
2010-11-21 19:19 ` [Bug fortran/46588] " oleg.steblev at gmail dot com
2010-11-21 19:39 ` kargl at gcc dot gnu.org
2010-11-22  8:11 ` [Bug fortran/46588] ICE with assumed character length function burnus at gcc dot gnu.org
2015-10-28 16:47 ` kargl at gcc dot gnu.org
2015-10-30 19:21 ` kargl at gcc dot gnu.org
2015-10-30 19:30 ` kargl at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-46588-4@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).