[Bug c++/25331] FAIL: tmpdir-g++.dg-struct-layout-1/t028 cp_compat_[xy]_tst.o compile

2005-12-12 Thread jakub at gcc dot gnu dot org
--- Comment #2 from jakub at gcc dot gnu dot org 2005-12-13 07:56 --- Subject: Bug 25331 Author: jakub Date: Tue Dec 13 07:56:10 2005 New Revision: 108460 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=108460 Log: PR c++/25331 * gcc.dg/compat/struct-layout-1_gene

[Bug c++/25383] Crash when using certain function pointer in template -- but presence of another function will avoid the crash

2005-12-12 Thread victor at thedods dot com
--- Comment #2 from victor at thedods dot com 2005-12-13 07:36 --- Created an attachment (id=10465) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10465&action=view) Source file (with a function that, if uncommented, prevents the crash) For some reason, when the commented-out funct

[Bug c++/25383] Crash when using certain function pointer in template -- but presence of another function will avoid the crash

2005-12-12 Thread victor at thedods dot com
--- Comment #1 from victor at thedods dot com 2005-12-13 07:35 --- Created an attachment (id=10464) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10464&action=view) preprocessed source file Here is the preprocessed source file (not much different from the original, which is attach

[Bug c++/25383] New: Crash when using certain function pointer in template -- but presence of another function will avoid the crash

2005-12-12 Thread victor at thedods dot com
This example, as is, will cause: blah.cpp: In function 'void Load() [with T = Blah, T* (* LoadFunction)() = Blah::Create]': blah.cpp:24: instantiated from here blah.cpp:13: internal compiler error: in build_call, at cp/call.c:323 The command is `g++ -c blah.cpp -save-temps` `gcc -v` produces U

[Bug ada/24822] make[2]: *** [ada/einfo.h] Error 1

2005-12-12 Thread charlet at adacore dot com
--- Comment #6 from charlet at adacore dot com 2005-12-13 07:22 --- Subject: Re: make[2]: *** [ada/einfo.h] Error 1 > Is GNAT still being maintained in the 4.0 branch? Yes, although only critical changes go there (as you would expect for a release branch). Arno -- http://gcc.gnu

[Bug c++/21764] visibility attributes on namespace scope

2005-12-12 Thread jason at gcc dot gnu dot org
--- Comment #10 from jason at gcc dot gnu dot org 2005-12-13 06:46 --- The semantics of this feature are pretty obvious for simple testcases. But since there's no One Definition Rule for namespaces, it's perfectly valid for different chunks of the same namespace to have different attrib

[Bug tree-optimization/25382] New: VRP does not get a range from BIT_AND_EXPR if the second operand is constant

2005-12-12 Thread pinskia at gcc dot gnu dot org
Take the following example: void g(int); int f(int i) { int t = i&0xFF; g(t); return (i > 0x100); } This can happen for casts like (int)(char)(i) and to truncate the i. The range for t should be [0, 0xFF]. -- Summary: VRP does not get a range from BIT_AND_EXPR if the sec

[Bug rtl-optimization/25381] New: local alloc is not really that good

2005-12-12 Thread pinskia at gcc dot gnu dot org
Take this little (stupid) C example: int f1(int a) { int b = a*2; return b+a; } --- Currently we produce: _f1: mr r0,r3 slwi r3,r3,1 add r3,r3,r0 blr - We should be able to produce: _f1: slwi r0,r3,1 add r3,r3,r0 blr --- If we l

[Bug tree-optimization/23429] Operations involving unsigneds could be simplified

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-12-13 04:30 --- Fixed in 4.2.0 by: 2005-12-12 Jeff Law <[EMAIL PROTECTED]> * tree-ssa-dom.c (simplify_rhs_and_lookup_avail_expr): Remove reassociation code. * passes.c (init_optimization_passes): Run reass

[Bug tree-optimization/22312] reassoc does not handle (i+j)+(k+l) well

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-12-13 04:29 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|NEW

[Bug target/25380] application segmentation fault when compiled with "-O2", but not with "-O1"

2005-12-12 Thread amodra at bigpond dot net dot au
--- Comment #2 from amodra at bigpond dot net dot au 2005-12-13 04:28 --- The testcase is invalid, because you are compiling libwrapped.so without -fPIC. Now, powerpc64 code is always PIC, so you might think that -fPIC (or -fpic) is unnecessary on powerpc64 shared libraries. However,

[Bug middle-end/23672] Fold does not fold (a^b)^a to b

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-12-13 04:24 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|NEW

[Bug tree-optimization/15878] a & b & ~a & ~b not optimized at the tree level

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-12-13 04:18 --- Fixed by: 2005-12-12 Jeff Law <[EMAIL PROTECTED]> * tree-ssa-dom.c (simplify_rhs_and_lookup_avail_expr): Remove reassociation code. * passes.c (init_optimization_passes): Run reassociation

[Bug target/25213] [3.4 only] -fpic/-fPIC testsuite failures in gcc.dg/i386-387-3.c and i386-387-4.c

2005-12-12 Thread ghazi at gcc dot gnu dot org
--- Comment #1 from ghazi at gcc dot gnu dot org 2005-12-13 03:43 --- Roger it's your testcase originally, any thoughts? Identical code works on 4.0 and later. -- ghazi at gcc dot gnu dot org changed: What|Removed |Added --

[Bug testsuite/20772] x86 tests should run on both i?86 and x86_64

2005-12-12 Thread ghazi at gcc dot gnu dot org
--- Comment #21 from ghazi at gcc dot gnu dot org 2005-12-13 03:24 --- After my checkins today, is there anything left to do in 4.0/4.1/trunk ? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20772

[Bug ada/24994] raised STORAGE_ERROR : stack overflow or erroneous memory access

2005-12-12 Thread danglin at gcc dot gnu dot org
--- Comment #3 from danglin at gcc dot gnu dot org 2005-12-13 02:29 --- Strangely, this didn't occur with using 4.1.0 and the same bootstrap version of gcc. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24994

[Bug c/25380] application segmentation fault when compiled with "-O2", but not with "-O1"

2005-12-12 Thread hugh dot daschbach at emulex dot com
Thread model: posix gcc version 4.2.0 20051212 (experimental) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25380

[Bug ada/24994] raised STORAGE_ERROR : stack overflow or erroneous memory access

2005-12-12 Thread danglin at gcc dot gnu dot org
main (argc=0, argv=0x0) at ../../gcc/gcc/main.c:35 (gdb) This is with 4.2.0 20051212 bootstrapped using 3.4.4. (gdb) p debug_tree (fndecl) > SI size unit size align 32 symtab 0 alias set -1 arg-types chain

[Bug c++/25364] [4.0/4.1/4.2 Regression] Internal compiler error in templated C++

2005-12-12 Thread reichelt at gcc dot gnu dot org
--- Comment #6 from reichelt at gcc dot gnu dot org 2005-12-13 01:59 --- Mark, this appeared with your patch http://gcc.gnu.org/ml/gcc-cvs/2005-10/msg00056.html Looks like a latent bug, though. BTW, the code compiles with a function reference instead of a function pointer as template

[Bug c/25380] New: application segmentation fault when compiled with "-O2", but not with "-O1"

2005-12-12 Thread hugh dot daschbach at emulex dot com
ppc64 segmentation fault on function return that returns the value of another function. Segmentation fault occurs when application is compiled with "-O2", but not when compiled with "-O1". *.i files identical, so included is a small test program, rather than the .i file. Apply following as a pat

[Bug target/25350] [4.2 Regression] Can't include mmintrin.h

2005-12-12 Thread glommer at gmail dot com
--- Comment #2 from glommer at gmail dot com 2005-12-13 01:18 --- Ok, the patch worked perfectly here. (In reply to comment #1) > Patch posted: > http://gcc.gnu.org/ml/gcc-patches/2005-12/msg00659.html > (In reply to comment #1) > Patch posted: > http://gcc.gnu.org/ml/gcc-patches/2005

[Bug tree-optimization/23838] [4.1/4.2 Regression] infinite loop in dse

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Priority|P2 |P3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23838

[Bug tree-optimization/23838] [4.1/4.2 Regression] infinite loop in dse

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-12-13 00:23 --- I am going to say this is 4.1 regression as it worked in 4.0.0 when removing the -fno-tree-copy-prop option but fails on the mainline and 4.1 branche with it. Somehow or another someone could come up with a testcase

[Bug target/25286] [4.1/4.2 Regression] ext/pool_allocator/allocate_chunk.cc execution test fails

2005-12-12 Thread danglin at gcc dot gnu dot org
--- Comment #2 from danglin at gcc dot gnu dot org 2005-12-13 00:01 --- I'm guessing but I think this patch might fix this problem as I'm not seeing this failure: http://gcc.gnu.org/ml/gcc-patches/2005-12/msg00325.html. The timing of the appearance of this bug appears to coincide with th

[Bug objc/25348] ICE encoding zero sized struct array

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2005-12-12 23:59 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|---

[Bug objc/25348] ICE encoding zero sized struct array

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2005-12-12 23:58 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug objc/25348] ICE encoding zero sized struct array

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2005-12-12 23:58 --- Subject: Bug 25348 Author: pinskia Date: Mon Dec 12 23:58:16 2005 New Revision: 108432 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=108432 Log: 2005-12-12 Andrew Pinski <[EMAIL PROTECTED]> PR ob

[Bug target/25339] [4.2 Regression] /usr/bin/ld: Procedure labels require the P' selector

2005-12-12 Thread danglin at gcc dot gnu dot org
--- Comment #1 from danglin at gcc dot gnu dot org 2005-12-12 23:47 --- Fixed by http://gcc.gnu.org/ml/gcc-patches/2005-12/msg00883.html. -- danglin at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug c++/25364] [4.0/4.1/4.2 Regression] Internal compiler error in templated C++

2005-12-12 Thread reichelt at gcc dot gnu dot org
--- Comment #5 from reichelt at gcc dot gnu dot org 2005-12-12 23:46 --- This is a regression from 4.0.2. -- reichelt at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/25372] Aligned args on IA64

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-12-12 23:17 --- (insn 3 9 4 0 (set (mem/f/c/i:DI (reg/f:DI 335 virtual-stack-vars) [0 a+0 S8 A64]) (reg:DI 112 in0 [ a ])) -1 (nil) (nil)) (insn 6 5 7 0 (set (mem/c/i:DI (reg/f:DI 340) [0 b+0 S8 A128]) (reg:DI

[Bug ada/24822] make[2]: *** [ada/einfo.h] Error 1

2005-12-12 Thread dave at hiauly1 dot hia dot nrc dot ca
--- Comment #5 from dave at hiauly1 dot hia dot nrc dot ca 2005-12-12 22:50 --- Subject: Re: make[2]: *** [ada/einfo.h] Error 1 > > > If the issue is with the bootstrap compiler, there's not much we can do. > > > > Bootstrap compiler is GCC. This doesn't occur on linux, but it > >

[Bug c++/25357] [3.4/4.0 Regression] ICE in typeid

2005-12-12 Thread reichelt at gcc dot gnu dot org
--- Comment #2 from reichelt at gcc dot gnu dot org 2005-12-12 22:49 --- I also get an ICE on the 4.0 branch as of today (and 4.0.0 - 4.0.2): bug.cc: In function 'int main()': bug.cc:16: internal compiler error: in create_tmp_var, at gimplify.c:368 Please submit a full bug report, [etc

[Bug testsuite/20772] x86 tests should run on both i?86 and x86_64

2005-12-12 Thread ghazi at gcc dot gnu dot org
--- Comment #20 from ghazi at gcc dot gnu dot org 2005-12-12 22:44 --- Subject: Bug 20772 Author: ghazi Date: Mon Dec 12 22:44:43 2005 New Revision: 108429 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=108429 Log: PR testsuite/20772 * g++.old-deja/g++.eh/tmpl2.C

[Bug c++/24915] [3.4/4.0/4.1/4.2 Regression] Overload errors generated without template instantiations for class member templates

2005-12-12 Thread reichelt at gcc dot gnu dot org
--- Comment #3 from reichelt at gcc dot gnu dot org 2005-12-12 22:39 --- Shorter testcase: struct A { template void foo() {} template int foo() {} }; This compiles correctly without the struct. -- reichelt a

[Bug testsuite/20772] x86 tests should run on both i?86 and x86_64

2005-12-12 Thread ghazi at gcc dot gnu dot org
--- Comment #19 from ghazi at gcc dot gnu dot org 2005-12-12 22:37 --- Subject: Bug 20772 Author: ghazi Date: Mon Dec 12 22:37:46 2005 New Revision: 108428 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=108428 Log: PR testsuite/20772 * g++.old-deja/g++.eh/tmpl2.C

[Bug c++/24817] [3.4/4.0 Regression] g++ accepts multiple function template declarations even if exception-specification doesn't match.

2005-12-12 Thread reichelt at gcc dot gnu dot org
--- Comment #4 from reichelt at gcc dot gnu dot org 2005-12-12 22:35 --- Lets close it as fixed then. -- reichelt at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/24314] Extra "template<>" in partial specialization is compiled successfuly.

2005-12-12 Thread reichelt at gcc dot gnu dot org
--- Comment #4 from reichelt at gcc dot gnu dot org 2005-12-12 22:32 --- More compact testcase: = template struct A {}; template<> template struct A {}; A a; = -- reichelt at gcc dot g

[Bug testsuite/20772] x86 tests should run on both i?86 and x86_64

2005-12-12 Thread ghazi at gcc dot gnu dot org
--- Comment #18 from ghazi at gcc dot gnu dot org 2005-12-12 22:28 --- Subject: Bug 20772 Author: ghazi Date: Mon Dec 12 22:28:02 2005 New Revision: 108427 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=108427 Log: PR testsuite/20772 * g++.old-deja/g++.eh/tmpl2.C

[Bug libfortran/25370] Bad value for sqrt of double complex

2005-12-12 Thread fxcoudert at gcc dot gnu dot org
--- Comment #3 from fxcoudert at gcc dot gnu dot org 2005-12-12 22:14 --- (In reply to comment #2) > I don't see this problem on FreeBSD with either static of dynamic > linking. Note, in both cases, I am picking up csqrt() from libgfortran. > What platform are you using? It's mentionn

[Bug rtl-optimization/23837] [4.0/4.1/4.2 regression] Wrong code with -fschedule-insns

2005-12-12 Thread steven at gcc dot gnu dot org
--- Comment #20 from steven at gcc dot gnu dot org 2005-12-12 22:14 --- Created an attachment (id=10463) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10463&action=view) a full set of debugging dumps Re. comment #16, sorry, I didn't read it until after going through the scheduler

[Bug testsuite/25352] xfail within dg-do command has no effect

2005-12-12 Thread janis at gcc dot gnu dot org
--- Comment #3 from janis at gcc dot gnu dot org 2005-12-12 22:14 --- How embarrassing, I tried these things by adding new tests to gcc.test-framework and the awk script that checks the results was ignoring some of the results because of magic needed for the generated tests. Now I'm abl

[Bug java/25379] gcj creates incorrect (byte-)code

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-12-12 22:10 --- Fixed in 4.0.0, it fails for me in 3.4.0. Closing as fixed for 4.0.0. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug java/25379] gcj creates incorrect (byte-)code

2005-12-12 Thread tromey at gcc dot gnu dot org
--- Comment #1 from tromey at gcc dot gnu dot org 2005-12-12 22:08 --- What version of gcj are you using? This seems to work fine for both 4.0 and 4.1. -- tromey at gcc dot gnu dot org changed: What|Removed |Added --

[Bug rtl-optimization/23837] [4.0/4.1/4.2 regression] Wrong code with -fschedule-insns

2005-12-12 Thread steven at gcc dot gnu dot org
--- Comment #19 from steven at gcc dot gnu dot org 2005-12-12 22:03 --- The dumps before and after scheduling look OK to me. There are three groups of instructions for libcalls: 1) 19-14-18-20 inputs: regs 95, 99, and 102 (all of them for x) result: reg 97 clobbers: nothing 2)

[Bug java/25379] New: gcj creates incorrect (byte-)code

2005-12-12 Thread jost2345 at users dot sourceforge dot net
public abstract class bug { protected void kill() {System.out.println("okay");} protected abstract void init(); public static bug getBug() {return new bug(){protected void init() {kill();}};} public static void main(String s[]) { bug.getBug().init(); } } $ g

[Bug libfortran/25378] New: [Fortran 2003] maxloc for all-false mask

2005-12-12 Thread tkoenig at gcc dot gnu dot org
When the mask is all false, F95 leaves it to the processor what to return for maxloc, minloc etc. F2003 specifies 0. We currently use 1, but changing this to 0 would make sense. $ cat m.f90 program main real, dimension(2) :: a logical, dimension(2) :: fa fa = .false. print *,maxloc(a,fa)

[Bug rtl-optimization/23837] [4.0/4.1/4.2 regression] Wrong code with -fschedule-insns

2005-12-12 Thread steven at gcc dot gnu dot org
--- Comment #18 from steven at gcc dot gnu dot org 2005-12-12 21:38 --- Created an attachment (id=10462) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10462&action=view) Instruction stream (stripped) after scheduling -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23837

[Bug rtl-optimization/23837] [4.0/4.1/4.2 regression] Wrong code with -fschedule-insns

2005-12-12 Thread steven at gcc dot gnu dot org
--- Comment #17 from steven at gcc dot gnu dot org 2005-12-12 21:38 --- Created an attachment (id=10461) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10461&action=view) Instruction stream (stripped) before scheduling -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23837

[Bug tree-optimization/25145] missed VRP opportunity

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #7 from pinskia at gcc dot gnu dot org 2005-12-12 21:01 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCON

[Bug java/24698] [4.1/4.2 regression] CLASSPATH . no longer implied for class specified on the command line

2005-12-12 Thread bero at arklinux dot org
--- Comment #10 from bero at arklinux dot org 2005-12-12 21:00 --- Created an attachment (id=10460) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10460&action=view) Script to trigger the SIGABRT problem Attaching a script that still triggers the SIGABRT. It's quite large for a te

[Bug fortran/25078] EQUILALENCE requires two or more objects

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 Last re

[Bug fortran/23209] array shape conformance not checked

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-12-12 20:52 --- *** Bug 25321 has been marked as a duplicate of this bug. *** -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23209

[Bug fortran/25321] array shape conformance error

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-12-12 20:52 --- *** This bug has been marked as a duplicate of 23209 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added --

[Bug testsuite/25320] dg-require-sharedlib should support installed compiler testing

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-12-12 20:49 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCON

[Bug target/25268] ICE on lshrdi3_31 pattern

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #13 from pinskia at gcc dot gnu dot org 2005-12-12 20:47 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNE

[Bug target/25295] unused register saved in function prolog

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-12-12 20:46 --- It comes after splitting a RTL pattern. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25295

[Bug target/25259] bootstrap failures on non-C99 platforms

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2005-12-12 20:46 --- (In reply to comment #5) > > You have to do "aclocal -I ../config", or you can configure with > > --enable-maintainer-mode. > > Ah, thanks. It fails very early though:> [EMAIL PROTECTED]:~> cat t.c > typedef __ext

[Bug tree-optimization/25290] PHI-OPT could be rewritten so that is uses fold

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-12-12 20:45 --- I am going to do this. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Assi

[Bug c/25334] The example for flexible array member doesn't work.

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-12-12 20:41 --- This is not what the documention says. It is talking about global variables and not a local ones. "Instead GCC allows static initialization of flexible array members. " Your example is not static initilzating of the

[Bug rtl-optimization/23837] [4.0/4.1/4.2 regression] Wrong code with -fschedule-insns

2005-12-12 Thread amylaar at gcc dot gnu dot org
--- Comment #16 from amylaar at gcc dot gnu dot org 2005-12-12 20:28 --- (In reply to comment #15) > I can reproduce this on hppa2.0-suse-linux-gnu with the "4.2-20051210" > snapshot. Could you make a full set of debugging dumps (i.e. from compiling with -da) available somewhere? --

[Bug c/11751] wrong evaluation order of an expression

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #57 from pinskia at gcc dot gnu dot org 2005-12-12 20:23 --- *** Bug 2673 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added --

[Bug c++/2673] c++ calls by value instead of by reference

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2005-12-12 20:23 --- Mark as a dup of bug 11751. *** This bug has been marked as a duplicate of 11751 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug c++/2673] c++ calls by value instead of by reference

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2005-12-12 20:23 --- Reopening to ... -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status

[Bug rtl-optimization/23837] [4.0/4.1/4.2 regression] Wrong code with -fschedule-insns

2005-12-12 Thread steven at gcc dot gnu dot org
--- Comment #15 from steven at gcc dot gnu dot org 2005-12-12 20:19 --- I can reproduce this on hppa2.0-suse-linux-gnu with the "4.2-20051210" snapshot. -- steven at gcc dot gnu dot org changed: What|Removed |Added -

[Bug target/25299] Another ABI incompatibility with Apple's gcc

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.2.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25299

[Bug testsuite/25167] FAIL: gcc.dg/weak/weak-14.c

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25167

[Bug testsuite/24478] gcc.dg/weak/weak-14.c (test for excess errors) fails

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24478

[Bug fortran/25292] ASSOCIATED( func() ) rejected ?

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.0.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25292

[Bug target/25311] [4.1 Regression] ICE in reload_cse_simplify_operands, at postreload.c:393

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25311

[Bug testsuite/25247] syntax error in target selector for gcc.dg/torture/fp-int-convert-float128-timode.c

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.2.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25247

[Bug target/24220] gcc.dg/i386-sse-vect-types.c (test for errors, line 17) fails

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24220

[Bug libfortran/24945] calling two open statements (same unit) without close fails

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24945

[Bug fortran/25109] formatted reads with embedded blanks in input fields

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25109

[Bug fortran/25149] Compiler dies on -std=f95

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25149

[Bug testsuite/25193] libstdc++ testsuite fails on cygwin

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.2.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25193

[Bug middle-end/25158] FAIL: gcc.c-torture/execute/builtins/fprintf.c compilation

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.0.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25158

[Bug fortran/25078] EQUILALENCE requires two or more objects

2005-12-12 Thread kargl at gcc dot gnu dot org
--- Comment #4 from kargl at gcc dot gnu dot org 2005-12-12 20:13 --- Subject: Bug 25078 Author: kargl Date: Mon Dec 12 20:13:37 2005 New Revision: 108426 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=108426 Log: PR fortran/25078 * match.c (gfc_match_equivalence

[Bug bootstrap/25207] bootstrap fails on libjava if alsa headers present but no -lasound.

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25207

[Bug c++/13384] error: non-lvalue in assignment - message a little misleading for C++

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.2.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13384

[Bug fortran/24789] [gfortran] ICE when assigning to array of strings

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.2.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24789

[Bug fortran/24705] ICE on assumed length character result

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.0.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24705

[Bug fortran/24223] Gfortran crashes in two places

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.0.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24223

[Bug fortran/23124] gfc_trans_deferred_array internal compiler error

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.2.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23124

[Bug fortran/15809] ICE Using Pointer Functions

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15809

[Bug testsuite/19231] Execute failure in gcc.c-torture/execute/builtins/strlen-3.c with -fpic/-fPIC

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.2.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19231

[Bug middle-end/23669] fold does convert (-a)/10 into a/-10 with -fno-wrapv

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.2.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23669

[Bug c++/24326] bad diagnostic

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.2.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24326

[Bug libfortran/24794] problem with namelist input of character array

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24794

[Bug middle-end/24950] [3.4/4.0/4.1/4.2 Regression] ICE in operand_subword_force

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.0.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24950

[Bug java/24999] [4.0.2 regression] symbol lookup failure

2005-12-12 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.0.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24999

[Bug libfortran/25370] Bad value for sqrt of double complex

2005-12-12 Thread kargl at gcc dot gnu dot org
--- Comment #2 from kargl at gcc dot gnu dot org 2005-12-12 20:06 --- I don't see this problem on FreeBSD with either static of dynamic linking. Note, in both cases, I am picking up csqrt() from libgfortran. What platform are you using? Is this another glibc problem? Does -fdump-tree-

[Bug libfortran/25377] New: libgfortran/io/transfer.c:2159 unlock_unit causes segfault

2005-12-12 Thread jb at gcc dot gnu dot org
I tried to use gfortran together with a library that uses pthreads. This caused a segfault. Note that my own code didn't directly call pthreads nor use openmp (this is trunk, not gomp branch). ~/src/benchmark/matmul-bench% gfortran -g -O0 matmul-bench.f90 -o mbgfc-goto -lgoto -lpthread ~/src/benc

[Bug java/24698] [4.1/4.2 regression] CLASSPATH . no longer implied for class specified on the command line

2005-12-12 Thread bero at arklinux dot org
--- Comment #9 from bero at arklinux dot org 2005-12-12 20:02 --- After some more testing, it turns out the test case is fixed, but the bigger test case from the original report isn't. Compiling ecj with gcj 4.0.1 and using it on a simple .java file still causes a SIGABRT after strace i

[Bug target/25350] [4.2 Regression] Can't include mmintrin.h

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-12-12 19:36 --- Patch posted: http://gcc.gnu.org/ml/gcc-patches/2005-12/msg00659.html -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug c++/25362] Error message for unmatched overload is gobbledygook

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-12-12 19:33 --- *** Bug 25363 has been marked as a duplicate of this bug. *** -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25362

[Bug c++/25363] Excessively long error message.

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-12-12 19:33 --- *** This bug has been marked as a duplicate of 25362 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added --

[Bug c++/25369] 4.0 regression: use of inline function in template class leads to undefined reference

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-12-12 19:31 --- Can you attach the preprocessed source? -- pinskia at gcc dot gnu dot org changed: What|Removed |Added -

[Bug target/25299] Another ABI incompatibility with Apple's gcc

2005-12-12 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2005-12-12 19:28 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRM

[Bug java/24698] [4.1/4.2 regression] CLASSPATH . no longer implied for class specified on the command line

2005-12-12 Thread bero at arklinux dot org
--- Comment #8 from bero at arklinux dot org 2005-12-12 19:18 --- Adjusting summary to reflect the current situation -- bero at arklinux dot org changed: What|Removed |Added --

[Bug java/24698] [4.1/4.2 regression] Failure locating .properties files inside jars

2005-12-12 Thread bero at arklinux dot org
--- Comment #7 from bero at arklinux dot org 2005-12-12 19:16 --- Just tried current 4.1 branch SVN (108424 with the patch for bug 24441 applied) - it works a lot better (no more ICEs or segfaults). One problem remains though (but this isn't major): CLASSPATH=test.jar gij test1 Still d

  1   2   >