[Bug fortran/18977] LAPACK test xeigtsts segfaults with optimization

2005-01-06 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2005-01-06 17:01 --- (In reply to comment #5) I'm no Fortran guru, but could be this related to PR 17675? I don't think this is an alignment problem. Apparently, ia64-unknown-linux-gnu sets up the processor differently

[Bug fortran/19292] [metabug] g77 features lacking in gfortran

2005-01-06 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2005-01-06 17:28 --- I don't think PR 18476 needs to be in there. The test case is invalid (just putting nml instead of nml= into the list). -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19292

[Bug libfortran/18398] Formatted I/O problems

2005-01-05 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2005-01-05 08:33 --- A testcase with character variables: $ gfortran cline $ cat cline.f character*2 c1,c2 open(7) write (7,'(A1)') 'a','b','c' rewind(7) read(7,'(A2)') c1,c2 print *,c1

[Bug fortran/19259] New: ; as first nonblank character on a line should be an error

2005-01-05 Thread Thomas dot Koenig at online dot de
Severity: minor Priority: P3 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19259

[Bug fortran/19260] New: not required when splitting a token in continuation

2005-01-05 Thread Thomas dot Koenig at online dot de
Severity: minor Priority: P3 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19260

[Bug fortran/19261] New: continuation character illegal as first non-blank character in statement

2005-01-05 Thread Thomas dot Koenig at online dot de
Version: 4.0.0 Status: UNCONFIRMED Severity: minor Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http

[Bug fortran/19261] continuation character illegal as first non-blank character in statement

2005-01-05 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2005-01-05 11:18 --- The following is also illegal: $ cat continuation-4.f90 ! This is a comment end $ gfortran continuation-4.f90 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19261

[Bug fortran/19262] New: more than thirty-nine continuation lines ignored

2005-01-05 Thread Thomas dot Koenig at online dot de
: minor Priority: P3 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19262

[Bug driver/19117] gcc -v should include target information

2005-01-05 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2005-01-05 11:39 --- I've found that gcc -dumpmachine does what I want. Still, it would be nice to have that information included in -v. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19117

[Bug fortran/19269] New: transpose(reshape(...)) of character array segfaults.

2005-01-05 Thread Thomas dot Koenig at online dot de
. Product: gcc Version: 4.0.0 Status: UNCONFIRMED Severity: normal Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu

[Bug fortran/19271] New: ICE on a = transpose(a) for character array

2005-01-05 Thread Thomas dot Koenig at online dot de
Product: gcc Version: 4.0.0 Status: UNCONFIRMED Severity: normal Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu

[Bug fortran/19282] New: ICE in gfc_conv_array_initializer

2005-01-05 Thread Thomas dot Koenig at online dot de
in gfc_conv_array_initializer Product: gcc Version: 4.0.0 Status: UNCONFIRMED Severity: normal Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de

[Bug fortran/5900] [g77 gfortran] Lapack regressions since g77 2.95.2

2005-01-04 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2005-01-04 09:30 --- Here are results on ia64-unknown-gnu-linux, with -O0 -g for gfortran snapshot 20050102. What I don't understand is that the results appear identical to the ones that I showed in comment 8 with snapshot

[Bug fortran/17379] Generic functions not resolved

2005-01-04 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2005-01-04 13:41 --- The problem appears to be related to the fact that length and size are both intrinsics. If you declare length to be external, with the following patch: $ diff -u vec3d.f90 vec3d-works.f90

[Bug libfortran/19106] segfault in executable for print *,sum(a,dim=2,mask=a0)

2005-01-04 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2005-01-04 14:54 --- I did some debugging on my testcase, and I think I've found some of the things wrong with it: $ gdb ./a.out GNU gdb Red Hat Linux (6.1post-1.20040607.52rh) Copyright 2004 Free Software Foundation, Inc

[Bug libfortran/18398] Formatted I/O problems

2005-01-04 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2005-01-04 22:20 --- Even shorter testcase: $ cat fio.f open(7) write (7,'(F12.5)') 1.0, 2.0, 3.0 rewind(7) read(7,'(F15.5)') a,b print *,a,b if (abs(a-1.0) .gt. 1e-5) call abort

[Bug libfortran/18398] Formatted I/O problems

2005-01-04 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2005-01-04 22:31 --- $ gfortran fio.f ./a.out 1.00 3.00 $ gfortran -dumpmachine i686-pc-linux-gnu Aborted I had mixed up my cutpaste there... of course, it was the test program that aborted

[Bug libfortran/18982] open(status=new) does not generate an error if the file exists

2005-01-01 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2005-01-01 22:07 --- Patch here: http://gcc.gnu.org/ml/gcc-patches/2005-01/msg00024.html -- What|Removed |Added

[Bug target/19116] -fno-finite-math-only does not override -ffast-math

2004-12-27 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-27 10:26 --- (In reply to comment #6) Can you try just -funsafe-math-optimizations and see what happens I think you will get the same results as -ffast-math -fno-finite-math-only as I think an instruction

[Bug libfortran/19016] maxloc ignores mask

2004-12-27 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-27 22:24 --- I did some more digging around, and found that the error only occurred when the mask parameter was generated on the fly. If the mask is a precomputed logical array, the function works correctly. $ cat

[Bug fortran/19101] missing in character continuation not caught

2004-12-25 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-25 09:31 --- (In reply to comment #1) The latest version of the F95 draft standard (isn't the world of coypyrighted standards wonderful?) states # If a character context is to be continued, the shall

[Bug libfortran/19064] runtime error when reading complex*16 using formatted I/O

2004-12-25 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-25 09:34 --- (In reply to comment #3) maybe fixed by pr19071, please check !! Yes, it is fixed. $ ./a.out ( 2.00 , 0.00 ) ( 0.25250582600 , 0.00

[Bug middle-end/19116] -fno-finite-math-only does not override -ffast-math

2004-12-25 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-25 14:32 --- I find strange that the C equivalent does not compare an NaN equal to itself, even with -O3 -ffast-math : $ cat nan-check.c #include stdio.h #include math.h int equality(double a, double b); int main

[Bug libfortran/19155] New: blanks not treated as zeros in 'E' format read

2004-12-25 Thread Thomas dot Koenig at online dot de
not treated as zeros in 'E' format read Product: gcc Version: 4.0.0 Status: UNCONFIRMED Severity: normal Priority: P2 Component: libfortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig

[Bug middle-end/19116] -fno-finite-math-only does not override -ffast-math

2004-12-25 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-25 22:17 --- It is actually possible to reproduce the Fortran behavior in C: $ cat nan-check2.c #include stdio.h #include math.h int equality(double *a, double *b); int main() { double a, b, c; a = 0.0

[Bug fortran/17283] UNPACK issues

2004-12-22 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-22 16:52 --- The issues with PACK are fixed, keeping this open as a reminder that UNPACK still has issues as pointed out in #4 Test case for the scalar case: $ cat unpack.f90 program main real, dimension(3

[Bug libfortran/19106] segfault in executable for print *,sum(a,dim=2,mask=a0)

2004-12-22 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-22 16:55 --- The problem seems to occur with other array intrinsics, too. On i686-pc-linux-gnu : $ cat unpack2.f90 program main real, dimension(3) :: a, b logical, dimension(3) :: l l = (/ .false., .true

[Bug fortran/19101] New: missing in character continuation not caught

2004-12-21 Thread Thomas dot Koenig at online dot de
org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19101

[Bug libfortran/19106] New: segfault in executable for print *,sum(a,dim=2,mask=a0)

2004-12-21 Thread Thomas dot Koenig at online dot de
Status: UNCONFIRMED Severity: normal Priority: P2 Component: libfortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi

[Bug driver/19116] New: -fno-finite-math-only does not override -ffast-math

2004-12-21 Thread Thomas dot Koenig at online dot de
-ffast-math Product: gcc Version: 4.0.0 Status: UNCONFIRMED Severity: normal Priority: P2 Component: driver AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc

[Bug middle-end/19116] -fno-finite-math-only does not override -ffast-math

2004-12-21 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-21 21:02 --- (In reply to comment #1) Hmm, this works for me on the mainline on powerpc-darwin. What target is this? I was used to gfortran -v telling me that... i686-pc-linux-gnu. -- http://gcc.gnu.org

[Bug driver/19117] New: gcc -v should include target information

2004-12-21 Thread Thomas dot Koenig at online dot de
at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19117

[Bug web/19118] New: My Bugs preset query should include WAITING bugs

2004-12-21 Thread Thomas dot Koenig at online dot de
Severity: enhancement Priority: P2 Component: web AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19118

[Bug libfortran/19071] New: complex formatted output has too many items

2004-12-18 Thread Thomas dot Koenig at online dot de
Status: UNCONFIRMED Severity: normal Priority: P2 Component: libfortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla

[Bug libfortran/19071] complex formatted output has too many items

2004-12-18 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-18 19:21 --- What I meant was that the bug is possibly related to PR 19064. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19071

[Bug libfortran/19052] unit 0 not preconnected to standard error

2004-12-17 Thread Thomas dot Koenig at online dot de
-- What|Removed |Added Version|unknown |4.0.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19052

[Bug fortran/18977] LAPACK test xeigtsts segfaults with optimization

2004-12-17 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-17 09:30 --- With 20041121, there was a problem with xeigtstc hanging with -O1 on IA-64. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18977

[Bug libfortran/19032] modulo generates wrong result for divisor 1 and -1

2004-12-17 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-17 14:27 --- I've adjusted the subject. I've had a look at the real modulo and mod case, but didn't quite understand it - it appeared to be overly complicated, compared to the straightforward formula a - floor(a/b

[Bug libfortran/19014] print *,maxloc(array) segfaults

2004-12-17 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-17 19:32 --- The assertion failure happens for me on an i686-pc-linux-gnu, as well. Looks like different bugs on different architectures for the same test case. (The assertion failure is a bug, too!) -- http

[Bug libfortran/19032] New: modulo generates wrong result

2004-12-16 Thread Thomas dot Koenig at online dot de
: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19032

[Bug fortran/18998] Gfortran produces wrong output (c/f to g77)

2004-12-16 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-16 11:47 --- The code runs correctly on IA-64. $ gfortran fft2.for $ ./a.out 0.00 0.00 0.00 0.00 4.00 0.00 0.00 0.00 0.00 0.00

[Bug fortran/18977] LAPACK test xeigtsts segfaults with optimization

2004-12-16 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-16 15:59 --- I reran the tests with the 20041114 snapshot at -O1, and the segfault did indeed go away, so this is a regression. Quite likely, this is a IA-64 target problem. -- http://gcc.gnu.org/bugzilla

[Bug libfortran/19032] modulo generates wrong result for divisor -1

2004-12-16 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-16 22:40 --- Reals are also broken: $ cat mod-real.f90 program main real :: a,b a = 2.0 b = -1.0 print *,modulo(a,b) end program main $ gfortran mod-real.f90 $ ./a.out -1.00 -- http://gcc.gnu.org

[Bug libfortran/19032] modulo generates wrong result

2004-12-16 Thread Thomas dot Koenig at online dot de
-- What|Removed |Added Keywords||wrong-code http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19032

[Bug libfortran/18985] opening unit 6 messes up print

2004-12-16 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-16 11:36 --- read *, print_to_file if (print_to_file) then open(6,file=stdout) end if Is this possible with ifort? I haven't found anything like that. The discussion on comp.lang.fortran showed that F

[Bug libfortran/19014] New: print *,maxloc(array) segfaults

2004-12-15 Thread Thomas dot Koenig at online dot de
. -- Summary: print *,maxloc(array) segfaults Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P2 Component: libfortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig

[Bug libfortran/19016] New: maxloc ignores mask

2004-12-15 Thread Thomas dot Koenig at online dot de
: normal Priority: P2 Component: libfortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19016

[Bug fortran/19021] New: segfault and ice on invalid print statements

2004-12-15 Thread Thomas dot Koenig at online dot de
Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19021

[Bug fortran/19021] segfault and ice on invalid print statements

2004-12-15 Thread Thomas dot Koenig at online dot de
-- What|Removed |Added Keywords||ice-on-invalid-code http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19021

[Bug libfortran/18985] opening unit 6 messes up print

2004-12-15 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-15 08:45 --- (In reply to comment #1) I think that's what intended That's what's for discussion :-) g77 behaves the same way. I think this is a bug, too. My thinking is that writing to * (or PRINTing) should

[Bug fortran/19015] New: shape / rank mismatch in maxloc / minloc leads to assertion failure at runtime

2004-12-15 Thread Thomas dot Koenig at online dot de
Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19015

[Bug fortran/5900] [g77 gfortran] Lapack regressions since g77 2.95.2

2004-12-14 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-14 16:07 --- Lapack on the IA-64 does not look good right now. Here are the results with 20041212 snapshot, with Steve Kargl's I/O patch from http://gcc.gnu.org/ml/gcc-patches/2004-12/msg00844.html applied: CES

[Bug fortran/18977] New: LAPACK test xeigtsts segfaults

2004-12-14 Thread Thomas dot Koenig at online dot de
: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org GCC host triplet: ia64-unknown-linux-gnu http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18977

[Bug libfortran/18982] New: open(status=new) does not generate an error if the file exists

2004-12-14 Thread Thomas dot Koenig at online dot de
Component: libfortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18982

[Bug fortran/5900] [g77 gfortran] Lapack regressions since g77 2.95.2

2004-12-14 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-14 16:13 --- ... I forgot to add, on a ia64-unknown-linux-gnu running RedHat ES 3.0. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=5900

[Bug fortran/18943] more than quadratic compile-time behavior with many arithmetic if statements

2004-12-13 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-13 08:57 --- It's not exponential, the exponent is somewhere between 2.2 and 2.3. Here's a number of test cases on an Itanium 2 with 1.3 GHz: $lasttime(s) 1 476.4 7000212.8 5000101.2 300029.8

[Bug fortran/18955] ICE in gfc_conv_ss_descriptor

2004-12-13 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-13 13:51 --- I just reran the PR 12366 testcase and found that this is indeed a duplication. *sigh* *** This bug has been marked as a duplicate of 12366 *** -- What|Removed

[Bug fortran/12366] array assignment fails

2004-12-13 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-13 13:52 --- *** Bug 18955 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug fortran/18977] LAPACK test xeigtsts segfaults with optimization

2004-12-13 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-14 11:08 --- Same problem with -O1 . -O0 doesn't segfault. -- What|Removed |Added Summary

[Bug libfortran/18982] open(status=new) does not generate an error if the file exists

2004-12-13 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-14 13:30 --- I forget... $ gfortran -v Reading specs from /home/zfkts/lib/gcc/ia64-unknown-linux-gnu/4.0.0/specs Configured with: ../gcc-4.0-20041212/configure --prefix=/home/zfkts --enable-languages=c,c++,f95

[Bug libfortran/18983] New: can't open /dev/null as an output file

2004-12-13 Thread Thomas dot Koenig at online dot de
Priority: P2 Component: libfortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18983

[Bug libfortran/18985] New: opening unit 6 messes up print

2004-12-13 Thread Thomas dot Koenig at online dot de
: libfortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18985

[Bug fortran/18955] New: ICE in gfc_conv_ss_descriptor

2004-12-13 Thread Thomas dot Koenig at online dot de
: UNCONFIRMED Severity: normal Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id

[Bug libfortran/18958] New: eoshift segfaults when shifting off the end of an array

2004-12-13 Thread Thomas dot Koenig at online dot de
Component: libfortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18958

[Bug libfortran/18959] New: ICE in cshift of character array

2004-12-13 Thread Thomas dot Koenig at online dot de
Component: libfortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18959

[Bug fortran/18960] New: compiler segfault on shifting character array constants

2004-12-13 Thread Thomas dot Koenig at online dot de
ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18960

[Bug libfortran/18966] New: cshift etc. not implemented for kind=1 and kind=2 actual arguments

2004-12-13 Thread Thomas dot Koenig at online dot de
: libfortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18966

[Bug fortran/18937] quadratic behaviour with many label spaghetti code

2004-12-12 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-12 16:19 --- g77 has the same problem: $ time g77 spaghetti.f real0m11.649s user0m11.516s sys 0m0.068s $ ./spaghetti 2 spaghetti.f $ time g77 spaghetti.f real0m50.604s user0m48.738s sys

[Bug middle-end/18938] Out of memory with many select case statements

2004-12-12 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-12 10:42 --- (In reply to comment #2) Speculations I'd put money on if the bookies would accept it: 1) You can show this same problem with C/C++ if you have enough cases. Yes. $ time ./multi-case-c 15

[Bug fortran/18943] New: exponential (?) compile-time behavior with many arithmetic if statements

2004-12-12 Thread Thomas dot Koenig at online dot de
Version: 4.0.0 Status: UNCONFIRMED Severity: normal Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http

[Bug middle-end/18937] New: quadratic behaviour with many label spaghetti code

2004-12-11 Thread Thomas dot Koenig at online dot de
Product: gcc Version: 4.0.0 Status: UNCONFIRMED Severity: enhancement Priority: P2 Component: middle-end AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc

[Bug fortran/18937] quadratic behaviour with many label spaghetti code

2004-12-11 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-11 10:40 --- (In reply to comment #1) Actually all of the time is spent in the parser so this is not a middle-end problem. You're correct. For example, the C frontend does not exhibit this behavior: $ ./spaghetti

[Bug fortran/18938] New: Out of memory with many select case statements

2004-12-11 Thread Thomas dot Koenig at online dot de
: UNCONFIRMED Severity: normal Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18938

[Bug libfortran/18924] New: segfault in dot_product with missing interface information

2004-12-10 Thread Thomas dot Koenig at online dot de
Product: gcc Version: 4.0.0 Status: UNCONFIRMED Severity: enhancement Priority: P3 Component: libfortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc

[Bug libfortran/18879] ? not supported in namelist input

2004-12-10 Thread Thomas dot Koenig at online dot de
-- What|Removed |Added Severity|normal |enhancement Status|WAITING |NEW Ever Confirmed|

[Bug fortran/18923] New: segfault after subroutine name confusion

2004-12-10 Thread Thomas dot Koenig at online dot de
Version: 4.0.0 Status: UNCONFIRMED Severity: normal Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http

[Bug fortran/18883] New: ICE in gfc_finish_var_decl

2004-12-08 Thread Thomas dot Koenig at online dot de
Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18883

[Bug libfortran/18879] ? not supported in namelist input

2004-12-08 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-08 16:24 --- (In reply to comment #1) Is this a language extension? Seems likely, as the standard has no concept of stdin and stdout. Could you point to someplace where this extension is specified? It's

[Bug fortran/18869] New: multiple common blocks in a single line rejected

2004-12-07 Thread Thomas dot Koenig at online dot de
Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18869

[Bug fortran/18870] New: [g77 regression] Equivalencing two common blocks is not caught

2004-12-07 Thread Thomas dot Koenig at online dot de
Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18870

[Bug fortran/18872] New: [g77 regression] Equivalencing two common blocks is not caught

2004-12-07 Thread Thomas dot Koenig at online dot de
Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18872

[Bug libf2c/18874] New: ? in namelist read leads to I/O recursion

2004-12-07 Thread Thomas dot Koenig at online dot de
: 3.2.3 Status: UNCONFIRMED Severity: normal Priority: P2 Component: libf2c AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org

[Bug libfortran/18879] New: ? not supported in namelist input

2004-12-07 Thread Thomas dot Koenig at online dot de
: normal Priority: P2 Component: libfortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18879

[Bug fortran/18850] padding within a sequence type

2004-12-06 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-06 08:37 --- (In reply to comment #1) Alternatively, do other compilers omit padding in sequence types? ifort does so, unless the '-pad' option is given: http://www.intel.com/software/products/compilers/flin/docs

[Bug fortran/18850] New: padding within a sequence type

2004-12-05 Thread Thomas dot Koenig at online dot de
Severity: normal Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18850

[Bug fortran/15966] ICE and segmentation fault on internal write

2004-12-05 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-05 20:03 --- *** Bug 18834 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug fortran/18834] ICE on reading from internal file character array

2004-12-05 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-05 20:03 --- (In reply to comment #2) Confirmed. This might be a dup of bug 15966 or PR 18781. Yes, I think this is a dupe of PR 15966. PR 18781 is a bit different, because there, it is the format which

[Bug fortran/18481] [g77 regression] ICE with assigned integer variable format

2004-12-04 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-04 10:37 --- This does indeed appear to be the problem with quite a few failing NIST tests. Here's a reduced testcase from NIST 111. The test case in question has the comment C*- USE AS A FORMAT

[Bug fortran/18824] New: [g77 regression] ENTRY with alternate return causes compiler segfault

2004-12-04 Thread Thomas dot Koenig at online dot de
Severity: normal Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18824

[Bug fortran/18826] New: compiler segfault on assign to array

2004-12-04 Thread Thomas dot Koenig at online dot de
Version: 4.0.0 Status: UNCONFIRMED Severity: normal Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org

[Bug fortran/18827] New: compiler segfault on assign to common variable

2004-12-04 Thread Thomas dot Koenig at online dot de
Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18827

[Bug fortran/18827] ICE on assign to common variable

2004-12-04 Thread Thomas dot Koenig at online dot de
-- What|Removed |Added Summary|compiler segfault on assign |ICE on assign to common |to common variable |variable

[Bug fortran/18827] ICE on assign to common variable

2004-12-04 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-04 14:56 --- The same bug is triggered if the assigned variable is equivalenced: $ cat assign4.f program main integer i integer j equivalence (i,j) assign 1000 to i goto j 1000

[Bug fortran/18833] New: ICE 'missing spec' on integer/char equivalence

2004-12-04 Thread Thomas dot Koenig at online dot de
spec' on integer/char equivalence Product: gcc Version: 4.0.0 Status: UNCONFIRMED Severity: normal Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot

[Bug fortran/18834] New: ICE on reading from internal file character array

2004-12-04 Thread Thomas dot Koenig at online dot de
Product: gcc Version: 4.0.0 Status: UNCONFIRMED Severity: normal Priority: P2 Component: fortran AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot

[Bug fortran/18834] ICE on reading from internal file character array

2004-12-04 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-12-04 21:18 --- It's also the same bug that lets NIST 909 fail. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18834

[Bug fortran/18794] New: warn about common variable alignment problems

2004-12-02 Thread Thomas dot Koenig at online dot de
ReportedBy: Thomas dot Koenig at online dot de CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18794

[Bug target/18566] Can vary constants (undefined fortran)

2004-11-30 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-11-30 08:29 --- (In reply to comment #3) This is a target problem, most likely what is happening is that the memory where the variable is being stored is not being marked as read only for the processor

[Bug fortran/18566] Can vary constants

2004-11-25 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-11-25 20:29 --- (In reply to comment #1) No it is just undefined on most targets we do seg fault. I realize that this is undefined, but it would still be nice to get consistent behavior (i.e. a consistent segfault

[Bug fortran/18518] equivalenced variables are not saved

2004-11-22 Thread Thomas dot Koenig at online dot de
--- Additional Comments From Thomas dot Koenig at online dot de 2004-11-22 12:29 --- (In reply to comment #5) Hmmm, I do not get this on my powerpc-unknown-linux-gnu: I am also not getting this with -O on ia64-unknown-linux-gnu . Apparently, the array assignment in bar is commented

<    1   2   3   4   >