[Bug libfortran/18392] New: segfault on derived type namelist input

2004-11-09 Thread Thomas dot Koenig at online dot de
$ cat foo.f90
program main
  implicit none
  type foo
 integer a
 real b
  end type foo
  type(foo) :: a
  namelist /nl/ a
  read (*,nl)
end program main
$ gfortran -v
Reading specs from /home/zfkts/lib/gcc/ia64-unknown-linux-gnu/4.0.0/specs
Configured with: ../gcc-4.0-20041107/configure --prefix=/home/zfkts
--enable-languages=c,c++,f95
Thread model: posix
gcc version 4.0.0 20041107 (experimental)
$ gfortran foo.f90
$ ./a.out
 NL
 A%A = 10,
Segmentation fault

According to Richard Maine (who knows the Fortran standard much
better than I do :-) on [EMAIL PROTECTED],
this input should be legal.

-- 
   Summary: segfault on derived type namelist input
   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 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=18392


[Bug bootstrap/18393] New: native C crosscompiler doesn't build.

2004-11-09 Thread pluto at pld-linux dot org
alpha and ppc require target's system headers 
(eg. in /usr/{alpha,ppc}-*/include) 
 
  gcc/config/alpha/linux.h:77:20: signal.h: No such file or directory 
  gcc/config/alpha/linux.h:78:26: sys/ucontext.h: No such file or directory 
 
cross-{amd64,arm,sparc*} build/work fine witohut it. 
do alpha and ppc really need them?

-- 
   Summary: native C crosscompiler doesn't build.
   Product: gcc
   Version: 3.4.3
Status: UNCONFIRMED
  Severity: enhancement
  Priority: P2
 Component: bootstrap
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: pluto at pld-linux dot org
CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: {alpha,ppc}-pld-linux
  GCC host triplet: pentium3-pld-linux
GCC target triplet: pentium3-pld-linux


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


[Bug target/18394] New: [4.0 regression] mmix-knuth-mmixware testsuite failure: gcc.c-torture/execute/strct-pack-3.c

2004-11-09 Thread hp at gcc dot gnu dot org
With LAST_UPDATED: Tue Nov  9 00:36:20 UTC 2004 I get:
FAIL: gcc.c-torture/execute/strct-pack-3.c execution,  -O1
FAIL: gcc.c-torture/execute/strct-pack-3.c execution,  -O2
FAIL: gcc.c-torture/execute/strct-pack-3.c execution,  -Os

With the message in the .log being:
*** EXIT code 4242
(a call to abort)

Last known to work on: Sat Nov  6 19:25:03 GMT 2004.

-- 
   Summary: [4.0 regression] mmix-knuth-mmixware testsuite failure:
gcc.c-torture/execute/strct-pack-3.c
   Product: gcc
   Version: 4.0.0
Status: UNCONFIRMED
  Severity: normal
  Priority: P2
 Component: target
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: hp at gcc dot gnu dot org
CC: gcc-bugs at gcc dot gnu dot org
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: mmix-knuth-mmixware


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


[Bug middle-end/18326] [4.0 regression] mmix-knuth-mmixware testsuite failure: gcc.c-torture/execute/20040625-1.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:10 
---
With Tue Nov  9 00:36:20 UTC 2004 the execution failures are gone,
but the compilation failure at -Os remains, same log message.
(Confirmed, because tested on separate system, with pristine sources.)


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Keywords|wrong-code  |
   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:10:27
   date||
Summary|[4.0 regression] mmix-knuth-|[4.0 regression] mmix-knuth-
   |mmixware testsuite failure: |mmixware testsuite failure:
   |/execute/20040625-1.c   |gcc.c-
   ||torture/execute/20040625-1.c


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


[Bug target/18324] [4.0 regression] mmix-knuth-mmixware testsuite failure: gcc.c-torture/execute/20010518-2.c execution, -O0

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:18 
---
Confirmed on separate system with Tue Nov  9 00:36:20 UTC 2004, still an abort
call.

-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:18:41
   date||


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


[Bug c++/18391] internal error: Segmentation fault for valid code segment

2004-11-09 Thread asachdeva at gmail dot com

--- Additional Comments From asachdeva at gmail dot com  2004-11-09 09:26 
---
The following code also crashes. Can somebody suggest a workaround while I am
using gcc 3.2

#include assert.h
#include stdio.h
#include stdlib.h

extern bool cond;

int (*funcPtr)();
#define printf 

int foobar(int foo, int bar = ((cond?funcPtr:(fprintf(stderr, problem at
%s:%s\n, __FILE__, __LINE__), abort()))()), int foob=8);


-- 
   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|FIXED   |


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


[Bug c++/18391] internal error: Segmentation fault for valid code segment

2004-11-09 Thread asachdeva at gmail dot com

--- Additional Comments From asachdeva at gmail dot com  2004-11-09 09:28 
---
I am planning to use the following code as workaround, which does not crash.

#include assert.h
#include stdio.h
#include stdlib.h

extern bool cond;

typedef int (*FuncPtr)();

FuncPtr funcPtr;

int foobar(int foo, int bar = ((cond?funcPtr:(fprintf(stderr, problem at
%s:%s\n, __FILE__, __LINE__), (FuncPtr)0))()), int foob=8);

-- 


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


[Bug other/14952] libgcc_eh.a broken with respect to pthreads static linking

2004-11-09 Thread eric dot valette at free dot fr

--- Additional Comments From eric dot valette at free dot fr  2004-11-09 
09:30 ---
I can confirm this bug with glibc cvs (yesterday) and gcc-3.4.2. The result is
that it is not possible to run the Open Posix test suite with glibc compiled as
NPTL + static library.

I have a real world RT application on linux where dynamic linking lead to a
VmSize of 70 Mb whereas static linling leads to VmSize = 10 Mb. The problem is
that you need to do mlockall to avoid page faults...

-- 
   What|Removed |Added

 CC||eric dot valette at free dot
   ||fr


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


[Bug target/18346] [4.0 regression] mmix-knuth-mmixware testsuite failure: gcc.dg/trampoline-1.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:48 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:48:41
   date||


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


[Bug target/18341] [4.0 regression] mmix-knuth-mmixware testsuite failure: gcc.dg/builtins-18.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:48 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:48:45
   date||


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


[Bug target/18352] mmix-knuth-mmixware testsuite failure: gcc.dg/tree-ssa/loop-5.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:48 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:48:48
   date||


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


[Bug target/18336] mmix-knuth-mmixware testsuite failure: gcc.dg/20040813-1.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:48 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:48:41
   date||


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


[Bug target/18345] mmix-knuth-mmixware testsuite failure: gcc.dg/intmax_t-1.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:48 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:48:38
   date||


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


[Bug target/18351] mmix-knuth-mmixware testsuite failure: XPASS: gcc.dg/tree-ssa/20040204-1.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:48 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|2004-11-07 06:57:04 |2004-11-09 09:48:42
   date||


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


[Bug target/18330] [4.0 regression] mmix-knuth-mmixware testsuite failure: execute/comp-goto-2.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:48 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:48:51
   date||


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


[Bug target/18350] mmix-knuth-mmixware testsuite failure: gcc.dg/torture/builtin-convert-1.c (1-3 actually)

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:48 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:48:54
   date||


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


[Bug target/18340] mmix-knuth-mmixware testsuite failure: gcc.dg/builtin-apply2.c and builtin-apply3.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:48 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:48:41
   date||


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


[Bug target/18343] mmix-knuth-mmixware testsuite failure: gcc.dg/builtin-return-1.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:48 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:48:59
   date||


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


[Bug target/18329] [4.0 regression] mmix-knuth-mmixware testsuite failure: execute/920501-7.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:49 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:49:00
   date||


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


[Bug target/18349] mmix-knuth-mmixware testsuite failure: gcc.dg/visibility-1.c (actually all)

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:48 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:48:58
   date||


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


[Bug target/18347] [3.4/4.0 regression] mmix-knuth-mmixware testsuite failure: gcc.dg/uninit-C.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:49 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:49:01
   date||


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


[Bug target/18339] mmix-knuth-mmixware testsuite failure: gcc.dg/bitfld-3.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:49 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:49:10
   date||


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


[Bug target/18348] mmix-knuth-mmixware testsuite failure: gcc.dg/uninit-H.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:49 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|2004-11-07 06:54:51 |2004-11-09 09:49:04
   date||


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


[Bug target/18338] mmix-knuth-mmixware testsuite failure: gcc.dg/bitfld-4.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:49 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:49:03
   date||


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


[Bug target/18337] mmix-knuth-mmixware testsuite failure: gcc.dg/array-quals-1.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:49 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:49:12
   date||


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


[Bug target/18335] [3.4/4.0 regression] mmix-knuth-mmixware testsuite failure: gcc.dg/debug/debug-1.c and debug-2 xyzzy

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:49 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:49:13
   date||


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


[Bug target/18328] [4.0 regression] mmix-knuth-mmixware testsuite failure: execute/20040629-1.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:49 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:49:12
   date||


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


[Bug target/18342] mmix-knuth-mmixware testsuite failure: gcc.dg/builtins-20.c

2004-11-09 Thread hp at gcc dot gnu dot org

--- Additional Comments From hp at gcc dot gnu dot org  2004-11-09 09:49 
---
Confirmed, separate system than original report, with Tue Nov  9 00:36:20 UTC
2004 (no .log reconfirmation)

-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:49:11
   date||


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


[Bug target/18345] mmix-knuth-mmixware testsuite failure: gcc.dg/intmax_t-1.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:48:38 |2004-11-09 09:54:01
   date||


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


[Bug target/18336] mmix-knuth-mmixware testsuite failure: gcc.dg/20040813-1.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:48:41 |2004-11-09 09:54:11
   date||


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


[Bug target/18340] mmix-knuth-mmixware testsuite failure: gcc.dg/builtin-apply2.c and builtin-apply3.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:48:41 |2004-11-09 09:54:08
   date||


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


[Bug target/18330] [4.0 regression] mmix-knuth-mmixware testsuite failure: execute/comp-goto-2.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:48:51 |2004-11-09 09:54:21
   date||


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


[Bug target/18352] mmix-knuth-mmixware testsuite failure: gcc.dg/tree-ssa/loop-5.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:48:48 |2004-11-09 09:54:18
   date||


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


[Bug target/18346] [4.0 regression] mmix-knuth-mmixware testsuite failure: gcc.dg/trampoline-1.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:48:41 |2004-11-09 09:54:14
   date||


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


[Bug target/18350] mmix-knuth-mmixware testsuite failure: gcc.dg/torture/builtin-convert-1.c (1-3 actually)

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:48:54 |2004-11-09 09:54:24
   date||


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


[Bug target/18341] [4.0 regression] mmix-knuth-mmixware testsuite failure: gcc.dg/builtins-18.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:48:45 |2004-11-09 09:54:15
   date||


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


[Bug target/18349] mmix-knuth-mmixware testsuite failure: gcc.dg/visibility-1.c (actually all)

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:48:58 |2004-11-09 09:54:26
   date||


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


[Bug target/18329] [4.0 regression] mmix-knuth-mmixware testsuite failure: execute/920501-7.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:49:00 |2004-11-09 09:54:30
   date||


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


[Bug target/18347] [3.4/4.0 regression] mmix-knuth-mmixware testsuite failure: gcc.dg/uninit-C.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:49:01 |2004-11-09 09:54:31
   date||


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


[Bug target/18338] mmix-knuth-mmixware testsuite failure: gcc.dg/bitfld-4.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:49:03 |2004-11-09 09:54:33
   date||


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


[Bug target/18343] mmix-knuth-mmixware testsuite failure: gcc.dg/builtin-return-1.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:48:59 |2004-11-09 09:54:29
   date||


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


[Bug target/18344] mmix-knuth-mmixware testsuite failure: gcc.dg/c99-intconst-1.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|-00-00 00:00:00 |2004-11-09 09:54:35
   date||


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


[Bug target/18337] mmix-knuth-mmixware testsuite failure: gcc.dg/array-quals-1.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:49:12 |2004-11-09 09:54:38
   date||


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


[Bug target/18339] mmix-knuth-mmixware testsuite failure: gcc.dg/bitfld-3.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:49:10 |2004-11-09 09:54:34
   date||


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


[Bug target/18328] [4.0 regression] mmix-knuth-mmixware testsuite failure: execute/20040629-1.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:49:12 |2004-11-09 09:54:38
   date||


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


[Bug target/18335] [3.4/4.0 regression] mmix-knuth-mmixware testsuite failure: gcc.dg/debug/debug-1.c and debug-2 xyzzy

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:49:13 |2004-11-09 09:54:39
   date||


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


[Bug target/18342] mmix-knuth-mmixware testsuite failure: gcc.dg/builtins-20.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

   Last reconfirmed|2004-11-09 09:49:11 |2004-11-09 09:54:37
   date||


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


[Bug target/18335] [3.4/4.0 regression] mmix-knuth-mmixware testsuite failure: gcc.dg/debug/debug-1.c and debug-2 xyzzy

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:39 |2004-11-09 09:57:09
   date||


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


[Bug target/18336] mmix-knuth-mmixware testsuite failure: gcc.dg/20040813-1.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:11 |2004-11-09 09:57:28
   date||


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


[Bug target/18337] mmix-knuth-mmixware testsuite failure: gcc.dg/array-quals-1.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:38 |2004-11-09 09:57:52
   date||


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


[Bug target/18338] mmix-knuth-mmixware testsuite failure: gcc.dg/bitfld-4.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:33 |2004-11-09 09:58:12
   date||


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


[Bug target/18339] mmix-knuth-mmixware testsuite failure: gcc.dg/bitfld-3.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:34 |2004-11-09 09:58:29
   date||


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


[Bug target/18340] mmix-knuth-mmixware testsuite failure: gcc.dg/builtin-apply2.c and builtin-apply3.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:08 |2004-11-09 09:59:05
   date||


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


[Bug target/18341] [4.0 regression] mmix-knuth-mmixware testsuite failure: gcc.dg/builtins-18.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:15 |2004-11-09 09:59:19
   date||


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


[Bug target/18342] mmix-knuth-mmixware testsuite failure: gcc.dg/builtins-20.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:37 |2004-11-09 09:59:32
   date||


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


[Bug target/18343] mmix-knuth-mmixware testsuite failure: gcc.dg/builtin-return-1.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:29 |2004-11-09 09:59:49
   date||


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


[Bug target/18345] mmix-knuth-mmixware testsuite failure: gcc.dg/intmax_t-1.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:01 |2004-11-09 10:00:34
   date||


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


[Bug target/18346] [4.0 regression] mmix-knuth-mmixware testsuite failure: gcc.dg/trampoline-1.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:14 |2004-11-09 10:00:52
   date||


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


[Bug target/18347] [3.4/4.0 regression] mmix-knuth-mmixware testsuite failure: gcc.dg/uninit-C.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:31 |2004-11-09 10:01:10
   date||


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


[Bug target/18349] mmix-knuth-mmixware testsuite failure: gcc.dg/visibility-1.c (actually all)

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:26 |2004-11-09 10:01:51
   date||


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


[Bug target/18350] mmix-knuth-mmixware testsuite failure: gcc.dg/torture/builtin-convert-1.c (1-3 actually)

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:24 |2004-11-09 10:02:29
   date||


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


[Bug target/18352] mmix-knuth-mmixware testsuite failure: gcc.dg/tree-ssa/loop-5.c

2004-11-09 Thread hp at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:18 |2004-11-09 10:03:32
   date||


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


[Bug tree-optimization/17742] [4.0 Regression] C Optimization error with -O1 on i686

2004-11-09 Thread rakdver at gcc dot gnu dot org

--- Additional Comments From rakdver at gcc dot gnu dot org  2004-11-09 
11:46 ---
Patch:

http://gcc.gnu.org/ml/gcc-patches/2004-11/msg00716.html

-- 
   What|Removed |Added

   Keywords||patch


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


[Bug debug/16792] [4.0 regression] ICE in gen_subprogram_die, at dwarf2out.c:11267

2004-11-09 Thread reichelt at gcc dot gnu dot org

--- Additional Comments From reichelt at gcc dot gnu dot org  2004-11-09 
11:55 ---
Zack, the regression appears with your patch
http://gcc.gnu.org/ml/gcc-cvs/2004-06/msg00815.html

Could you please have a look?


-- 
   What|Removed |Added

 CC||zack at gcc dot gnu dot org


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


[Bug target/16798] PowerPC - Opportunity to use recording form instruction.

2004-11-09 Thread nathan at gcc dot gnu dot org

--- Additional Comments From nathan at gcc dot gnu dot org  2004-11-09 
12:25 ---
The problem here is that combine only combines chains of instructions that have
no other uses of the intermediate results.  In this case, the intermediate
result is stored into a global variable.

One solution would be to add a peephole, but that would only trigger when (a)
the shift and compare were adjacent, and (b) the compare used CR0.  You'd also
need peepholers for all the instructions that can implicitly set CR0.

Really combine, which is a generic peepholer, needs some kind of templatizing on
the target machine.  It currently functions by generating promising patterns and
 then seeing if they exist.  This is wasteful, in that it generates many
patterns  that don't exist on the particular target, and it is blind in that it
doesn't spot any special cases the target might have (like this case).  What's
needed is something like pre-reg-alloc peepholes.  That of course would be a
large amount of work.

-- 


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


[Bug pch/14940] PCH largefile test fails on various platforms

2004-11-09 Thread cvs-commit at gcc dot gnu dot org

--- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-11-09 
12:35 ---
Subject: Bug 14940

CVSROOT:/cvs/gcc
Module name:gcc
Changes by: [EMAIL PROTECTED]   2004-11-09 12:35:16

Modified files:
gcc: ChangeLog 
gcc/config : host-linux.c 

Log message:
2004-11-07  James A. Morrison  [EMAIL PROTECTED]

PR pch/14940
* config/host-linux.c (TRY_EMPTY_VM_SPACE): Add __sparc__
definitions.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gccr1=2.6237r2=2.6238
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/host-linux.c.diff?cvsroot=gccr1=1.3r2=1.4



-- 


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


[Bug rtl-optimization/18395] New: [meta-bug] combine needs to be templatized like a peepholer

2004-11-09 Thread nathan at gcc dot gnu dot org
This is a catch all bug report to document failures in combine.

There are at least two problems with combine.

1) It only combines chains of instructions that have no other uses of the
intermediate results.

2) It functions by generating promising patterns and then seeing if they exist.
 This is wasteful, in that it generates many patterns  that don't exist on the
particular target, and it is blind in that it doesn't spot any special cases the
target might have.

Really combine, which is a generic peepholer, needs some kind of templatizing on
the target machine.   What's needed is something like pre-reg-alloc peepholes. 
That of course would be a large amount of work.

-- 
   Summary: [meta-bug] combine needs to be templatized like a
peepholer
   Product: gcc
   Version: 4.0.0
Status: UNCONFIRMED
  Keywords: missed-optimization, meta-bug
  Severity: normal
  Priority: P2
 Component: rtl-optimization
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: nathan at gcc dot gnu dot org
CC: gcc-bugs at gcc dot gnu dot org


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


[Bug rtl-optimization/18395] [meta-bug] combine needs to be templatized like a peepholer

2004-11-09 Thread nathan at gcc dot gnu dot org


-- 
   What|Removed |Added

OtherBugsDependingO||16798
  nThis||


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


[Bug fortran/18396] New: namelist of array in derived type unimplemented

2004-11-09 Thread Thomas dot Koenig at online dot de
I think I'm almost done with namelist (or maybe I'm the only person
in the world who uses it :-)

$ gfortran -v
Reading specs from /home/zfkts/lib/gcc/ia64-unknown-linux-gnu/4.0.0/specs
Configured with: ../gcc-4.0-20041107/configure --prefix=/home/zfkts
--enable-languages=c,c++,f95
Thread model: posix
gcc version 4.0.0 20041107 (experimental)
$ cat foo.f90
program main
  implicit none
  type foo
 real b(2)
  end type foo
  type(foo) :: a
  namelist /nl/ a
  a%b = 2.
  write (*,nl)
end program main
$ gfortran foo.f90
foo.f90: In function 'MAIN__':
foo.f90:8: fatal error: gfc_todo: Not Implemented: NAMELIST IO of array in
derived type
compilation terminated.

-- 
   Summary: namelist of array in derived type unimplemented
   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 dot org
  GCC host triplet: ia64-unknown-linux-gnu


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


[Bug rtl-optimization/18395] [meta-bug] combine needs to be templatized like a peepholer

2004-11-09 Thread pinskia at gcc dot gnu dot org


-- 
   What|Removed |Added

 CC||pinskia at gcc dot gnu dot
   ||org
   Severity|normal  |enhancement


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


[Bug libstdc++/18397] New: G++ ICE in g++-v3/bits/vector.tcc

2004-11-09 Thread zephiris at gmail dot com
The commandline is as follows.

Making all in nav
make[1]: Entering directory `/usr/local/src/vegastrike/src/gfx/nav'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/usr/local/src/vegastrike/src/gfx/nav'
make[1]: Entering directory `/usr/local/src/vegastrike/src/gfx'
if g++ -DHAVE_CONFIG_H -I. -I. -I../..   -DHAVE_SDL=1 -DSDL_WINDOWING=1 
-DHAVE_AL=1  -DUSE_STENCIL_BUFFER=1  -I/usr/include/python2.3 -DHAVE_PYTHON=1 
-DUSE_BOOST_131=1 -I../../src/boost129  -I../../src   -march=pentium3
-fomit-frame-pointer -mfpmath=sse -ftracer -ftree-vectorize
-fbranch-target-load-optimize -maccumulate-outgoing-args -O3 -floop-optimize2
-funroll-loops -fpeel-loops -ftree-loop-linear -fivopts -funswitch-loops
-fvisibility=hidden -O3 -ffast-math -ggdb3 -pthread -pipe -pipe  -falign-loops=2
-falign-jumps=2 -falign-functions=2  -I/usr/include/SDL -D_REENTRANT -pthread
-pipe -MT mesh_xml.o -MD -MP -MF .deps/mesh_xml.Tpo \
  -c -o mesh_xml.o `test -f 'mesh_xml.cpp' || echo './'`mesh_xml.cpp; \
then mv -f .deps/mesh_xml.Tpo .deps/mesh_xml.Po; \
else rm -f .deps/mesh_xml.Tpo; exit 1; \
fi
/usr/lib/gcc/i686-pc-linux-gnu/4.0.0/include/g++-v3/bits/vector.tcc: In member
function 'void std::vector_Tp,
_Alloc::_M_fill_insert(__gnu_cxx::__normal_iteratortypename _Alloc::pointer,
std::vector_Tp, _Alloc , size_t, const _Tp) [with _Tp = int, _Alloc =
std::allocatorint]':
/usr/lib/gcc/i686-pc-linux-gnu/4.0.0/include/g++-v3/bits/vector.tcc:311:
internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See URL:http://gcc.gnu.org/bugs.html for instructions.
make[1]: *** [mesh_xml.o] Error 1
make[1]: Leaving directory `/usr/local/src/vegastrike/src/gfx'
make: *** [all-recursive] Error 1
Replacing -O3 with -O2 makes it not ICE.
gcc -v is as follows:
Reading specs from /usr/lib/gcc/i686-pc-linux-gnu/4.0.0/specs
Configured with: ../configure --enable-version-specific-runtime-libs
--prefix=/usr --bindir=/usr/i686-pc-linux-gnu/gcc-bin/4.0
--includedir=/usr/lib/gcc/i686-pc-linux-gnu/4.0.0/include
--datadir=/usr/share/gcc-data/i686-pc-linux-gnu/4.0
--mandir=/usr/share/gcc-data/i686-pc-linux-gnu/4.0/man
--infodir=/usr/share/gcc-data/i686-pc-linux-gnu/4.0/info
--with-gxx-include-dir=/usr/lib/gcc/i686-pc-linux-gnu/4.0.0/include/g++-v3
--host=i686-pc-linux-gnu --disable-altivec --enable-nls
--without-included-gettext --enable-__cxa_atexit
--enable-clocale=gnu--enable-shared --with-system-zlib --disable-checking
--disable-werror --disable-libunwind-exceptions --enable-threads=posix
--disable-multilib --with-x --enable-java-awt=gtk,xlib --enable-gtk-cairo
--enable-languages=c,c++,java
Thread model: posix
gcc version 4.0.0 20041108 (experimental)

-- 
   Summary: G++ ICE in g++-v3/bits/vector.tcc
   Product: gcc
   Version: 4.0.0
Status: UNCONFIRMED
  Severity: normal
  Priority: P2
 Component: libstdc++
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: zephiris at gmail dot com
CC: gcc-bugs at gcc dot gnu dot org
  GCC host triplet: i686-pc-linux-gnu


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


[Bug c++/18391] internal error: Segmentation fault for valid code segment

2004-11-09 Thread pinskia at gcc dot gnu dot org

--- Additional Comments From pinskia at gcc dot gnu dot org  2004-11-09 
12:55 ---
3.2.x is so old and not maintained any more and ther other one is fixed also 
already in 3.3, I think it is 
time to update.

-- 
   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||FIXED


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


[Bug middle-end/18397] G++ ICE in g++-v3/bits/vector.tcc

2004-11-09 Thread pinskia at gcc dot gnu dot org


-- 
   What|Removed |Added

  Component|libstdc++   |middle-end
   Keywords||ice-on-valid-code


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


[Bug rtl-optimization/18395] [meta-bug] combine needs to be templatized like a peepholer

2004-11-09 Thread pinskia at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|-00-00 00:00:00 |2004-11-09 12:57:09
   date||


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


[Bug middle-end/18397] G++ ICE in g++-v3/bits/vector.tcc

2004-11-09 Thread zephiris at gmail dot com

--- Additional Comments From zephiris at gmail dot com  2004-11-09 12:57 
---
Created an attachment (id=7498)
 -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7498action=view)
Preprocessed version of mesh_xml.cpp which produces ICE


-- 


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


[Bug fortran/18396] namelist of array in derived type unimplemented

2004-11-09 Thread pinskia at gcc dot gnu dot org

--- Additional Comments From pinskia at gcc dot gnu dot org  2004-11-09 
12:58 ---
Confirmed.

-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Keywords||ice-on-valid-code, rejects-
   ||valid
   Last reconfirmed|-00-00 00:00:00 |2004-11-09 12:58:50
   date||


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


[Bug bootstrap/18393] native C crosscompiler doesn't build.

2004-11-09 Thread pinskia at gcc dot gnu dot org

--- Additional Comments From pinskia at gcc dot gnu dot org  2004-11-09 
13:00 ---
You have to have the glibc headers to compile a cross compiler.

-- 
   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||WONTFIX


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


[Bug middle-end/18397] G++ ICE in g++-v3/bits/vector.tcc

2004-11-09 Thread zephiris at gmail dot com

--- Additional Comments From zephiris at gmail dot com  2004-11-09 13:15 
---
Created an attachment (id=7499)
 -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7499action=view)
Preprocessed version of mesh_xml.cpp (with -O2) which does NOT produce ICE


-- 


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


[Bug target/17171] [3.3/3.4 Regression] Unrecognized comments in generated asm

2004-11-09 Thread reichelt at gcc dot gnu dot org


-- 
   What|Removed |Added

  Known to work|4.0 3.0 |4.0.0 3.0
   Target Milestone|3.4.2   |4.0.0


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


[Bug libgcj/18376] java.io.BufferedWriter outputing extraneous characters?

2004-11-09 Thread wayne dot gray at coynetextileservices dot com

--- Additional Comments From wayne dot gray at coynetextileservices dot com 
 2004-11-09 13:36 ---
(In reply to comment #3)
 The code says:
 
   while (br.read(charBuff,0,fileLength) != -1) 
 bw.write(charBuff,0,fileLength); 
 
 There is no guarantee that read() will fill the buffer.
 If you see a partial read, you will then write a full buffer,
 meaning that the remainder of the buffer will be zero
 (or leftovers from an earlier read).
 
 So, I think this is not a libgcj bug.
 

I see what you're saying.  But if that were true then the while loop would have
multiple iterations.  No?

The read and write methods are only being called once in this method for this
file.  Just confirmed with another test.

This is true because I'm sizing the buffer to the length of the file and... 

  br.read(charBuff,0,fileLength)

...reads the entire file length in the first shot.


-- 


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


[Bug target/18394] [4.0 regression] mmix-knuth-mmixware testsuite failure: gcc.c-torture/execute/strct-pack-3.c

2004-11-09 Thread pinskia at gcc dot gnu dot org

--- Additional Comments From pinskia at gcc dot gnu dot org  2004-11-09 
13:45 ---
Most likely the same problem as some of the recent failures on big endian 
targets caused by RTH's 
patch.

-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Keywords||wrong-code
   Last reconfirmed|-00-00 00:00:00 |2004-11-09 13:45:46
   date||
   Target Milestone|--- |4.0.0


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


[Bug target/18330] [4.0 regression] mmix-knuth-mmixware testsuite failure: execute/comp-goto-2.c

2004-11-09 Thread pinskia at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:21 |2004-11-09 13:46:14
   date||


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


[Bug target/18329] [4.0 regression] mmix-knuth-mmixware testsuite failure: execute/920501-7.c

2004-11-09 Thread pinskia at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Keywords||wrong-code
   Last reconfirmed|2004-11-09 09:54:30 |2004-11-09 13:46:32
   date||


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


[Bug target/18344] mmix-knuth-mmixware testsuite failure: gcc.dg/c99-intconst-1.c

2004-11-09 Thread pinskia at gcc dot gnu dot org


-- 
   What|Removed |Added

 CC||pinskia at gcc dot gnu dot
   ||org
 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:35 |2004-11-09 13:47:01
   date||


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


[Bug target/18328] [4.0 regression] mmix-knuth-mmixware testsuite failure: execute/20040629-1.c

2004-11-09 Thread pinskia at gcc dot gnu dot org


-- 
   What|Removed |Added

 CC||pinskia at gcc dot gnu dot
   ||org
 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|2004-11-09 09:54:38 |2004-11-09 13:47:33
   date||


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


[Bug libfortran/18398] New: Formatted I/O problems

2004-11-09 Thread sfilippone at uniroma2 dot it
The attached test case ought to exactly reproduce its input, and it does not on
two counts: 1. There are missing lines in the output 2. It gives a run time 
error. 
The runtime error appears similar to that of bug 17597, but this is on formatted
I/O.  If the source is compiled with g77 it produces correct output. 
[EMAIL PROTECTED] BOWL]$ gfortran -v 
Reading specs from 
/home/local/gfortran/bin/../lib/gcc/i686-pc-linux-gnu/4.0.0/specs
Configured with: ../gcc-4.0-20041107/configure --prefix=/usr/local/gfortran
Thread model: posix
gcc version 4.0.0 20041107 (experimental)
[EMAIL PROTECTED] BOWL]$ g77 -o rnp77 rnp.f
[EMAIL PROTECTED] BOWL]$ gfortran -o rnp rnp.f
[EMAIL PROTECTED] BOWL]$ ./rnp77 itr r77
[EMAIL PROTECTED] BOWL]$ ./rnp itr rout
At line 47 of file rnp.f
Fortran runtime error: End of file
[EMAIL PROTECTED] BOWL]$ diff rout r77 
7a8
   cafilm0.
9a11
   pgssw 0.
12a15
   dtmax0.31100E-04
16a20
   bore  8.2000
20a25
   datdct0.
22a28
   swipro3.1100
23a30
   sector0.

. etc

-- 
   Summary: Formatted I/O problems
   Product: gcc
   Version: 4.0.0
Status: UNCONFIRMED
  Severity: normal
  Priority: P2
 Component: libfortran
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: sfilippone at uniroma2 dot it
CC: gcc-bugs at gcc dot gnu dot org
  GCC host triplet: i686-pc-linux-gnu


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


[Bug middle-end/18397] G++ ICE in g++-v3/bits/vector.tcc

2004-11-09 Thread pinskia at gcc dot gnu dot org

--- Additional Comments From pinskia at gcc dot gnu dot org  2004-11-09 
14:01 ---
I cannot reproduce it on powerpc-darwin or i686-openbsd3.1 or on 
i686-pc-linux-gnu which only has 
4.0.0 20041102.

-- 
   What|Removed |Added

   GCC host triplet|i686-pc-linux-gnu   |
 GCC target triplet||i686-pc-linux-gnu


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


[Bug libfortran/18398] Formatted I/O problems

2004-11-09 Thread sfilippone at uniroma2 dot it

--- Additional Comments From sfilippone at uniroma2 dot it  2004-11-09 
14:02 ---
Created an attachment (id=7500)
 -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7500action=view)
Test case source code


-- 


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


[Bug libfortran/18398] Formatted I/O problems

2004-11-09 Thread sfilippone at uniroma2 dot it

--- Additional Comments From sfilippone at uniroma2 dot it  2004-11-09 
14:03 ---
Created an attachment (id=7501)
 -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7501action=view)
test case input file


-- 


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


[Bug middle-end/18359] [4.0 Regression] testsuite failure: gcc.c-torture/execute/20040625-1.c

2004-11-09 Thread pinskia at gcc dot gnu dot org

--- Additional Comments From pinskia at gcc dot gnu dot org  2004-11-09 
14:05 ---
And I can say this was caused by RTH's patch:
2004-11-05  Richard Henderson  [EMAIL PROTECTED]

* expmed.c (extract_force_align_mem_bit_field): New.
(extract_split_bit_field): Call it.

-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|-00-00 00:00:00 |2004-11-09 14:05:37
   date||


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


[Bug middle-end/18357] [4.0 Regression] testsuite failure: gcc.c-torture/execute/20020227-1.c at -O0, -O1, -O2 and -Os

2004-11-09 Thread pinskia at gcc dot gnu dot org


-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
 GCC target triplet|hppa*-*-*   |hppa-unknown-linux-gnu,
   ||hppa2.0w-hp-hpux11.11,
   ||hppa64-hp-hpux11.
   Last reconfirmed|-00-00 00:00:00 |2004-11-09 14:07:46
   date||


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


[Bug libstdc++/18262] [3.4 Regression] New libstdc++ testsuite fails

2004-11-09 Thread pinskia at gcc dot gnu dot org

--- Additional Comments From pinskia at gcc dot gnu dot org  2004-11-09 
14:22 ---
So closing as works for me.

-- 
   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||WORKSFORME


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


[Bug java/15576] [4.0 Regression] Class initialization optimization is disabled

2004-11-09 Thread cvs-commit at gcc dot gnu dot org

--- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-11-09 
14:34 ---
Subject: Bug 15576

CVSROOT:/cvs/gcc
Module name:gcc
Changes by: [EMAIL PROTECTED]   2004-11-09 14:33:36

Modified files:
gcc/java   : ChangeLog check-init.c expr.c parse.y 

Log message:
2004-11-09  Andrew Pinski  [EMAIL PROTECTED]

PR java/15576
* check-init.c (check_init): Ignore DECL_EXPR.
* expr.c (always_initialize_class_p): Reenable.
(build_class_init): Use a variable to store the decl.  Also use
boolean_false_node instead of integer_zero_node.
* parse.y (attach_init_test_initialization_flags): Add a decl_expr
to the block.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/ChangeLog.diff?cvsroot=gccr1=1.1495r2=1.1496
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/check-init.c.diff?cvsroot=gccr1=1.59r2=1.60
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/expr.c.diff?cvsroot=gccr1=1.209r2=1.210
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/java/parse.y.diff?cvsroot=gccr1=1.519r2=1.520



-- 


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


[Bug java/18399] New: [4.0 Regression] Class initialization optimization does not work with the inliner

2004-11-09 Thread pinskia at gcc dot gnu dot org
As reported in http://gcc.gnu.org/ml/gcc-patches/2004-11/msg00713.html.  We 
no longer do the 
class initializer optimization after inlining.

-- 
   Summary: [4.0 Regression] Class initialization optimization does
not work with the inliner
   Product: gcc
   Version: 4.0.0
Status: UNCONFIRMED
  Keywords: missed-optimization
  Severity: normal
  Priority: P2
 Component: java
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: pinskia at gcc dot gnu dot org
CC: gcc-bugs at gcc dot gnu dot org,java-prs at gcc dot gnu
dot org


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


[Bug java/18399] [4.0 Regression] Class initialization optimization does not work with the inliner

2004-11-09 Thread pinskia at gcc dot gnu dot org


-- 
   What|Removed |Added

   Target Milestone|--- |4.0.0


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


[Bug java/15576] [4.0 Regression] Class initialization optimization is disabled

2004-11-09 Thread pinskia at gcc dot gnu dot org

--- Additional Comments From pinskia at gcc dot gnu dot org  2004-11-09 
14:36 ---
Fixed, I filed PR 18399 for this optimization not working with the inliner.

-- 
   What|Removed |Added

OtherBugsDependingO||18399
  nThis||
 Status|ASSIGNED|RESOLVED
 Resolution||FIXED


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


[Bug java/8709] class init optimization should check subclasses

2004-11-09 Thread pinskia at gcc dot gnu dot org


-- 
Bug 8709 depends on bug 15576, which changed state.

Bug 15576 Summary: [4.0 Regression] Class initialization optimization is 
disabled
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15576

   What|Old Value   |New Value

 Status|NEW |ASSIGNED
 Status|ASSIGNED|RESOLVED
 Resolution||FIXED

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


[Bug java/18399] [4.0 Regression] Class initialization optimization does not work with the inliner

2004-11-09 Thread pinskia at gcc dot gnu dot org


-- 
   What|Removed |Added

Bug 18399 depends on bug 15576, which changed state.

Bug 15576 Summary: [4.0 Regression] Class initialization optimization is 
disabled
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15576

   What|Old Value   |New Value

 Status|ASSIGNED|RESOLVED
 Resolution||FIXEDBug 18399 depends on bug 
15576, which changed state.

Bug 15576 Summary: [4.0 Regression] Class initialization optimization is 
disabled
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15576

   What|Old Value   |New Value

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED

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


[Bug java/12911] Class initialization optimization pessimization

2004-11-09 Thread pinskia at gcc dot gnu dot org


-- 
Bug 12911 depends on bug 15576, which changed state.

Bug 15576 Summary: [4.0 Regression] Class initialization optimization is 
disabled
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15576

   What|Old Value   |New Value

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED

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


[Bug java/17574] [meta-bug] gcj and libgcj 4.0 tracking PR

2004-11-09 Thread pinskia at gcc dot gnu dot org


-- 
Bug 17574 depends on bug 15576, which changed state.

Bug 15576 Summary: [4.0 Regression] Class initialization optimization is 
disabled
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15576

   What|Old Value   |New Value

 Status|NEW |ASSIGNED
 Status|ASSIGNED|RESOLVED
 Resolution||FIXED

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


  1   2   3   >