This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/32388] New: Internal compiler error in convert_move
- From: "john dot harper at vuw dot ac dot nz" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 18 Jun 2007 03:42:09 -0000
- Subject: [Bug fortran/32388] New: Internal compiler error in convert_move
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
The following Fortran 95 program gives the compile-time output below it:
harper@RHEL5 test system: ~/Jfh/Test 60 >cat testdpconst.f90
PROGRAM testdpconst ! initialization sometimes /= assignment
INTEGER,PARAMETER :: long = selected_int_kind(15)
DOUBLE PRECISION :: dx = 2d0
PRINT 666,'sqrt(dx)**2 ',sqrt(dx)**2 &
, 'in hex format',transfer(sqrt(dx)**2,1_long)
PRINT 666,'sqrt(2d0)**2 ',sqrt(2d0)**2 &
, 'in hex format',transfer(sqrt(2d0)**2,1_long)
666 FORMAT (1X,A," = ",F18.16,/,1X,A," = ",Z16)
END PROGRAM testdpconst
harper@RHEL5 test system: ~/Jfh/Test 61 >gfortran -v testdpconst.f90
Driving: gfortran -v testdpconst.f90 -lgfortranbegin -lgfortran -lm
-shared-libgcc
Using built-in specs.
Target: i386-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man
--infodir=/usr/share/info --enable-shared --enable-threads=posix
--enable-checking=release --with-system-zlib --enable-__cxa_atexit
--disable-libunwind-exceptions --enable-libgcj-multifile
--enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk
--disable-dssi --enable-plugin
--with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic
--host=i386-redhat-linux
Thread model: posix
gcc version 4.1.1 20070105 (Red Hat 4.1.1-52)
/usr/libexec/gcc/i386-redhat-linux/4.1.1/f951 testdpconst.f90 -quiet -dumpbase
testdpconst.f90 -mtune=generic -auxbase testdpconst -version -I
/usr/lib/gcc/i386-redhat-linux/4.1.1/finclude -o /tmp/ccHotQOh.s
GNU F95 version 4.1.1 20070105 (Red Hat 4.1.1-52) (i386-redhat-linux)
compiled by GNU C version 4.1.1 20070105 (Red Hat 4.1.1-52).
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
testdpconst.f90: In function âMAIN__â:
testdpconst.f90:7: internal compiler error: in convert_move, at expr.c:362
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://bugzilla.redhat.com/bugzilla> for instructions.
harper@RHEL5 test system: ~/Jfh/Test 62 >
--
Summary: Internal compiler error in convert_move
Product: gcc
Version: 4.1.1
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: john dot harper at vuw dot ac dot nz
GCC build triplet: ?
GCC host triplet: ?
GCC target triplet: i386-redhat-linux
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32388