[Bug target/11739] i386 prefetch tests need to made smarter

2004-10-28 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-29 06:56 --- Subject: Bug 11739 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-3_2-rhl8-branch Changes by: [EMAIL PROTECTED] 2004-10-29 06:56:39 Modified files: gcc: C

[Bug tree-optimization/17510] [4.0 Regression] -fstrict-aliasing triggers miscompilation

2004-10-28 Thread pinskia at gcc dot gnu dot org
-- Bug 17510 depends on bug 17133, which changed state. Bug 17133 Summary: [4.0 Regression] wrong code with -ftree-lim http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17133 What|Old Value |New Value --

[Bug tree-optimization/17425] [4.0 Regression] : wrong code with optimization (tree_ssa invariant motion pass?)

2004-10-28 Thread pinskia at gcc dot gnu dot org
-- Bug 17425 depends on bug 17133, which changed state. Bug 17133 Summary: [4.0 Regression] wrong code with -ftree-lim http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17133 What|Old Value |New Value --

[Bug tree-optimization/17133] [4.0 Regression] wrong code with -ftree-lim

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-29 05:43 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug tree-optimization/16728] [4.0 regression] std::set tests for allocator/insert core in make check-performance

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-29 05:43 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug fortran/13490] Compiler rejects valid constant -2147483648 for 32-bit int

2004-10-28 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-29 04:41 --- Subject: Bug 13490 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-29 04:41:49 Modified files: gcc/testsuite : ChangeLog gcc/testsuite/gfor

[Bug java/4695] Error calling method from enclosing context in constructor

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-29 03:54 --- *** Bug 18215 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug java/18215] GCJ disallows some references to 'this' from an enclosing class

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-29 03:54 --- *** This bug has been marked as a duplicate of 4695 *** -- What|Removed |Added

[Bug java/18215] New: GCJ disallows some references to 'this' from an enclosing class

2004-10-28 Thread csm at gnu dot org
In the constructor of a member class, GCJ does not allow you to do a 'super' call with an argument that calls an instance method of the enclosing class. For example, GCJ rejects this perfectly valid class: --- outer.java --- public class outer { private String name; public outer (String name

[Bug tree-optimization/18198] [4.0 Regression] bootstrap stage2 build of fname-uf.adb causes ICE

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-29 02:16 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug c++/18214] Wrong code for function call involving copy constuctor

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-29 02:14 --- I think this is a target issue because it works on both the mainline and 3.4.0 on i686-pc-linux-gnu and it also works on the mainline on powerpc-darwin. -- What|Removed

[Bug rtl-optimization/17581] [3.4 Regression] Long long arithmetic fails inside a switch/case statement when compiled with -O2

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-29 02:12 --- Patch here: . -- What|Removed |Added

[Bug c++/14124] enum definition with __attribute__((packed)) gives syntax errors

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-29 02:11 --- Fixed in 4.0.0. -- What|Removed |Added Status|NEW |RESOL

[Bug c++/17695] [4.0 regression] ICE in add_abstract_origin_attribute

2004-10-28 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-29 02:05 --- My attempted fix failed. Things will not be easy, given that we're copying the typedef. Because we call rest_of_type_compilation for A even before the end of the B::B() function, we must somehow arrange t

[Bug middle-end/17549] [4.0 Regression] 35% increase in codesize with C code

2004-10-28 Thread giovannibajo at libero dot it
--- Additional Comments From giovannibajo at libero dot it 2004-10-29 02:04 --- Well, nothing changes from our last tests with -Os -fno-tree-pre. Comment #10 and Comment #12 reflect the current situation. We still have a big regression with the new attacchment Miguel posted (susan_edge

[Bug c++/17695] [4.0 regression] ICE in add_abstract_origin_attribute

2004-10-28 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-29 01:42 --- The problem here is an ordering issue. When we see A, we instantiate it, and call gen_type_die for A. That causes us to generate DIEs for all members of A, including A::t. The type of A::t is C, so we no

[Bug target/16300] Bug in vendor /usr/include/net/if.h needs fixincluding

2004-10-28 Thread giovannibajo at libero dot it
--- Additional Comments From giovannibajo at libero dot it 2004-10-29 01:31 --- > Yes, that does appear to be it---the header needs > to be specified as "net/if.h" instead of merely "if.h". Ok. Bruce, I guess this is more material for you to add to the documentation. Will you take car

[Bug c++/18214] New: Wrong code for function call involving copy constuctor

2004-10-28 Thread ajd at gentrack dot com
Configured with: /home/ajd/gcc-3.4.2/configure --prefix=/opt/gcc-3.4.2 -- enable-languages=c,c++ --enable-threads=posix --with-gnu-as --without-gnu-ld -- with-as=/usr/local/bin/as Thread model: posix gcc version 3.4.2 Also reproduced on 3.4.0 and 3.3.2. The following code segfaults at runtime. C

[Bug c/18213] New inline heuristic make binary bigger (single call site)

2004-10-28 Thread jt at hpl dot hp dot com
--- Additional Comments From jt at hpl dot hp dot com 2004-10-28 23:58 --- Oups, sorry. I'll try to upgrade and verify. Thanks for the very quick answer... Jean -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18213

[Bug c/18213] New inline heuristic make binary bigger (single call site)

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 23:55 --- You are still behind, 3.4.0 has an optimization at -O2 and above (-Os included) where we inline functions which are only called once. -- What|Removed |Added ---

[Bug c/18213] New: New inline heuristic make binary bigger (single call site)

2004-10-28 Thread jt at hpl dot hp dot com
Hi, I was just upgrading from gcc-2.95 to gcc-3.3.4 (yeah, I'm way behind). While recompiling my favorite package (Wireless Tools for Linux), I noticed that gcc was giving me many warning of the type "warning: inlining failed". And the resulting binary were bigger than with the previous versio

[Bug tree-optimization/16728] [4.0 regression] std::set tests for allocator/insert core in make check-performance

2004-10-28 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-28 23:24 --- Subject: Bug 16728 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-28 23:24:41 Modified files: gcc: ChangeLog tree-flow.h tree-ssa-alias.

[Bug bootstrap/18211] [4.0 Regression] Parallel bootstrap failure: No rule to make target `hard-reg-set.h', needed by `build/insn-conditions.o'

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 23:05 --- I just was able to build gcc with -j5 and it worked for me. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18211

[Bug fortran/13490] Compiler rejects valid constant -2147483648 for 32-bit int

2004-10-28 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-28 22:25 --- Subject: Bug 13490 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-28 22:25:18 Modified files: gcc/fortran: ChangeLog Log message: Fix

[Bug fortran/17912] gfortran: Bogus "Arithmetic overflow" error, regression w.r.t. g77

2004-10-28 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-28 22:25 --- Subject: Bug 17912 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-28 22:25:18 Modified files: gcc/fortran: ChangeLog Log message: Fix

[Bug java/18212] New: nativ compilation with multiple jars fails / gives internal compiler error

2004-10-28 Thread bojan at antonovic dot com
given: A.jar, B.jar and X.jar. X.jar depends on A.jar and B.jar. wanted: nativ compiled X.jar to a.out and x.exec 1 given jar: working: gcj --main=A.main A.jar working: gcj -o a.exec --main=A.main A.jar multiple given jars: working: gcj --classpath:A.jar:B.jar:. --main=X.main X.jar A.jar B.jar

[Bug libstdc++/17441] symbols not in the standard introduced into std::

2004-10-28 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-28 22:08 --- Subject: Bug 17441 CVSROOT:/cvs/gcc Module name:gcc Branch: libstdcxx_so_7-branch Changes by: [EMAIL PROTECTED] 2004-10-28 22:08:18 Modified files: libstdc++-v3 :

[Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias

2004-10-28 Thread dnovillo at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |dberlin at gcc dot gnu dot |dot org |org Status|NEW

[Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias

2004-10-28 Thread dberlin at dberlin dot org
--- Additional Comments From dberlin at dberlin dot org 2004-10-28 21:58 --- Subject: Re: [tree-ssa] component refs to the same struct should not alias > dberlin's field-based SSA work should help here. Dan, want to take this one? Sure. Just reassign it to me :) -- http://gcc.g

[Bug tree-optimization/13765] [tree-ssa] stores to different members of the same array should not alias

2004-10-28 Thread dberlin at dberlin dot org
--- Additional Comments From dberlin at dberlin dot org 2004-10-28 21:57 --- Subject: Re: [tree-ssa] stores to different members of the same array should not alias > > Dan, ISTR you saying that the field based stuff would also help with arrays. Yes, i can make it happen on arrays as

[Bug libstdc++/17780] std::allocator vs. static init

2004-10-28 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=17780

[Bug libstdc++/16614] Excessive resource usage in __mt_alloc

2004-10-28 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=16614

[Bug libstdc++/16612] [3.4 only] empty basic_strings can't live in shared memory

2004-10-28 Thread pcarlini at suse dot de
--- Additional Comments From pcarlini at suse dot de 2004-10-28 21:55 --- Fixed for 3.4.3. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug libstdc++/16614] Excessive resource usage in __mt_alloc

2004-10-28 Thread bkoz at gcc dot gnu dot org
--- Additional Comments From bkoz at gcc dot gnu dot org 2004-10-28 21:54 --- Fixed on mainline. -- What|Removed |Added Status|ASSIGNED|RESOL

[Bug libstdc++/17780] std::allocator vs. static init

2004-10-28 Thread bkoz at gcc dot gnu dot org
--- Additional Comments From bkoz at gcc dot gnu dot org 2004-10-28 21:53 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug libstdc++/16612] [3.4 only] empty basic_strings can't live in shared memory

2004-10-28 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-28 21:53 --- Subject: Bug 16612 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-3_4-branch Changes by: [EMAIL PROTECTED] 2004-10-28 21:52:42 Modified files: libstdc++-v3 : Change

[Bug fortran/13490] Compiler rejects valid constant -2147483648 for 32-bit int

2004-10-28 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=13490

[Bug fortran/17912] gfortran: Bogus "Arithmetic overflow" error, regression w.r.t. g77

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 21:48 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug libstdc++/18159] tr1/tuple is broken on darwin

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 21:47 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug fortran/17912] gfortran: Bogus "Arithmetic overflow" error, regression w.r.t. g77

2004-10-28 Thread coyote at coyotegulch dot com
--- Additional Comments From coyote at coyotegulch dot com 2004-10-28 21:46 --- Patch committed after approval -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17912

[Bug fortran/17912] gfortran: Bogus "Arithmetic overflow" error, regression w.r.t. g77

2004-10-28 Thread coyote at coyotegulch dot com
-- Bug 17912 depends on bug 13490, which changed state. Bug 13490 Summary: Compiler rejects valid constant -2147483648 for 32-bit int http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13490 What|Old Value |New Value ---

[Bug fortran/13490] Compiler rejects valid constant -2147483648 for 32-bit int

2004-10-28 Thread coyote at coyotegulch dot com
--- Additional Comments From coyote at coyotegulch dot com 2004-10-28 21:45 --- Patch committed after approval -- What|Removed |Added Status|NEW

[Bug bootstrap/18211] [4.0 Regression] Parallel bootstrap failure: No rule to make target `hard-reg-set.h', needed by `build/insn-conditions.o'

2004-10-28 Thread lucier at math dot purdue dot edu
--- Additional Comments From lucier at math dot purdue dot edu 2004-10-28 21:23 --- Subject: Re: [4.0 Regression] Parallel bootstrap failure: No rule to make target `hard-reg-set.h', needed by `build/insn-conditions.o' "make bootstrap" continued just fine; after insn-conditions.o was

[Bug libstdc++/18159] tr1/tuple is broken on darwin

2004-10-28 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-28 21:19 --- Subject: Bug 18159 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-28 21:18:56 Modified files: libstdc++-v3 : ChangeLog libstdc++-v3/inclu

[Bug bootstrap/18211] [4.0 Regression] Parallel bootstrap failure: No rule to make target `hard-reg-set.h', needed by `build/insn-conditions.o'

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 21:18 --- hard-reg-set.h is non generated header, hmm this might be related to configuring by a relative prefix but I doubt it. -- What|Removed |Added ---

[Bug bootstrap/18211] New: Parallel bootstrap failure: No rule to make target `hard-reg-set.h', needed by `build/insn-conditions.o'

2004-10-28 Thread lucier at math dot purdue dot edu
The error message is in the subject, I guess. The build command was /bin/rm -rf *; ../configure --prefix=/export/users/lucier/local/gcc-mainline; make -j 8 bootstrap >& build.log && (make -j 12 -k check RUNTESTFLAGS="--target_board 'unix{-m64,}'">& check.log ; make mail-report-with-warnings.log;

[Bug target/16300] Bug in vendor /usr/include/net/if.h needs fixincluding

2004-10-28 Thread skunk at iskunk dot org
--- Additional Comments From skunk at iskunk dot org 2004-10-28 21:07 --- [EMAIL PROTECTED]:/mnt/scratch/gcc-3.4.2-build> find . -name if.h ./gcc/include/root/usr/sys/include/net/if.h Yes, that does appear to be it---the header needs to be specified as "net/if.h" instead of merely "if.h"

[Bug libfortran/18210] New: namelist output format problems

2004-10-28 Thread Thomas dot Koenig at online dot de
$ cat bar.f90 program main real :: a namelist /foo/ a a = 1.4 write (*,foo) end program main $ gfortran-4.0 bar.f90 $ ./a.out &foo a= 1.40,/ This has the following problems: - all names should be uppercase - there should be blanks in column 1. At least, my copy of "Fortran 90 ex

[Bug debug/18199] [4.0 Regression] AIX XCOFF debugging broken

2004-10-28 Thread zack at gcc dot gnu dot org
--- Additional Comments From zack at gcc dot gnu dot org 2004-10-28 21:01 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug debug/18199] [4.0 Regression] AIX XCOFF debugging broken

2004-10-28 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-28 21:01 --- Subject: Bug 18199 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-28 21:01:03 Modified files: gcc: ChangeLog dbxout.c xcoffout.h Log m

[Bug c++/17132] [3.4/4.0 Regression] GCC fails to eliminate function template specialization when argument deduction fails

2004-10-28 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-28 21:00 --- Fixed in GCC 3.4.3. -- What|Removed |Added Status|ASSIGNED|

[Bug c++/17132] [3.4/4.0 Regression] GCC fails to eliminate function template specialization when argument deduction fails

2004-10-28 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-28 20:56 --- Subject: Bug 17132 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-3_4-branch Changes by: [EMAIL PROTECTED] 2004-10-28 20:56:55 Modified files: gcc/cp : Change

[Bug c++/17132] [3.4/4.0 Regression] GCC fails to eliminate function template specialization when argument deduction fails

2004-10-28 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-28 20:53 --- Subject: Bug 17132 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-28 20:53:04 Modified files: gcc/cp : ChangeLog pt.c gcc/testsuite

[Bug libfortran/18209] New: namelist read does not work for arrays

2004-10-28 Thread Thomas dot Koenig at online dot de
$ cat foo.f90 program main real :: a(5) namelist /foo/ a read (*,foo) write (*,*) a end program main $ cat foo.nml &foo a = 4*1.2, 1.5 / $ gfortran-4.0 foo.f90 $ ./a.out < foo.nml 2.011467 -1.999733 1.4012985E-45 2.057415 2.057416 $ cat foo2.nml &foo a = 1.2, 1.2, 1.2,

[Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias

2004-10-28 Thread dnovillo at gcc dot gnu dot org
--- Additional Comments From dnovillo at gcc dot gnu dot org 2004-10-28 20:34 --- *** Bug 13765 has been marked as a duplicate of this bug. *** -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13761

[Bug tree-optimization/13765] [tree-ssa] stores to different members of the same array should not alias

2004-10-28 Thread dnovillo at gcc dot gnu dot org
--- Additional Comments From dnovillo at gcc dot gnu dot org 2004-10-28 20:34 --- Dan, ISTR you saying that the field based stuff would also help with arrays. Or do we want to implement array-SSA? (I'd rather not, in principle). *** This bug has been marked as a duplicate of 13761 **

[Bug bootstrap/18208] error compiling gcc34 on freebsd 5.1

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 20:32 --- CFLAGS containing -mcpu= is your problem, this is listed on the instation instructions because it has bitten some of other people already. `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead. --

[Bug tree-optimization/13765] [tree-ssa] stores to different members of the same array should not alias

2004-10-28 Thread dnovillo at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|dnovillo at gcc dot gnu dot |unassigned at gcc dot gnu |org |dot org Status|ASSIGNED

[Bug bootstrap/18208] New: error compiling gcc34 on freebsd 5.1

2004-10-28 Thread micko_s at hotmail dot com
/usr/ports/lang/gcc34/work/build/gcc/xgcc -B/usr/ports/lang/gcc34/work/build/gcc/ -B/usr/local/i386-portbld-freebsd5.1/bin/ -B/usr/local/i386-portbld-freebsd5.1/lib/ -isystem /usr/local/i386-portbld-freebsd5.1/include -isystem /usr/local/i386-portbld-freebsd5.1/sys-include -c -DHAVE_CONFIG_H -O2 -O

[Bug c++/18207] New: wrong diagnostic for ill-formed implicitly-defined default constructor

2004-10-28 Thread boris at kolpackov dot net
$ cat >test.cxx struct m { private: m (m const&); }; struct s { m m_; }; struct s1 : s { s1 () { } }; void f () { s1 s_; } $ g++-3.4 --version g++-3.4 (GCC) 3.4.2 (Debian 3.4.2-3) $ g++-3.4 -c test.cxx test.cxx: In constructor `s1::s1()': test.cxx:16: error: no matching function for

[Bug tree-optimization/13761] [tree-ssa] component refs to the same struct should not alias

2004-10-28 Thread dnovillo at gcc dot gnu dot org
--- Additional Comments From dnovillo at gcc dot gnu dot org 2004-10-28 20:28 --- dberlin's field-based SSA work should help here. Dan, want to take this one? -- What|Removed |Added ---

[Bug c++/13146] inheritance for nonoverlapping_component_refs_p

2004-10-28 Thread dnovillo at gcc dot gnu dot org
--- Additional Comments From dnovillo at gcc dot gnu dot org 2004-10-28 20:23 --- The tree alias analyzer depends on the type information given to it by alias.c. In this case, the types of the pointers passed to the two routines have conflicting alias sets, so they are given the same m

[Bug target/18151] Disable building of fixincludes for avr target.

2004-10-28 Thread ericw at evcohs dot com
--- Additional Comments From ericw at evcohs dot com 2004-10-28 19:54 --- Subject: Re: Disable building of fixincludes for avr target. pinskia at gcc dot gnu dot org wrote: >--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 19:53 >--- >But you forgot to c

[Bug target/18151] Disable building of fixincludes for avr target.

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 19:53 --- But you forgot to close it. -- What|Removed |Added Status|NEW

[Bug target/18151] Disable building of fixincludes for avr target.

2004-10-28 Thread aaronavay62 at aaronwl dot com
--- Additional Comments From aaronavay62 at aaronwl dot com 2004-10-28 19:49 --- Oops, I beat you to it. :-) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18151

[Bug target/18151] Disable building of fixincludes for avr target.

2004-10-28 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-28 19:48 --- Subject: Bug 18151 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-28 19:48:04 Modified files: . : ChangeLog configure.in configure Lo

[Bug target/18206] New: -dynamic-linker option seems to be badly named, broken and undocumented

2004-10-28 Thread ratmice at yahoo dot com
only tested this under 3.3.4/4.0 but it seems to go back a few years. it will pass -dynamic-linker to cc1 also. and seems to have been noticed before http://gcc.gnu.org/ml/gcc/2000-10/msg00437.html from what i can tell it suppresses the passing of -dynamic-linker to ld (ignoring that it gets sen

[Bug target/18151] Disable building of fixincludes for avr target.

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 19:41 --- Confirmed, if I get some time I will apply it later tonight (as it was approved in here). -- What|Removed |Added

[Bug middle-end/18160] [4.0 Regression] ICE on taking register variable address

2004-10-28 Thread nemet at gcc dot gnu dot org
--- Additional Comments From nemet at gcc dot gnu dot org 2004-10-28 19:31 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug middle-end/18160] [4.0 Regression] ICE on taking register variable address

2004-10-28 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-28 19:31 --- Subject: Bug 18160 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-28 19:31:26 Modified files: gcc/testsuite : ChangeLog gcc/testsuite/gcc.

[Bug middle-end/18160] [4.0 Regression] ICE on taking register variable address

2004-10-28 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-28 19:30 --- Subject: Bug 18160 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-28 19:30:50 Modified files: gcc: ChangeLog c-typeck.c Log message:

[Bug other/18172] execution failure in vect-[20,22].c on ppc-linux

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 19:10 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug other/18172] execution failure in vect-[20,22].c on ppc-linux

2004-10-28 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-10-28 19:00 --- Subject: Bug 18172 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-10-28 19:00:40 Modified files: gcc/testsuite : ChangeLog gcc/testsuite/gcc.

[Bug middle-end/17549] [4.0 Regression] 15% increase in codesize with C code

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 18:34 --- PRE has now been disabled at -Os, someone wants to try again? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17549

[Bug java/6163] anonymous class verifier error

2004-10-28 Thread tromey at gcc dot gnu dot org
--- Additional Comments From tromey at gcc dot gnu dot org 2004-10-28 18:20 --- Nobody is planning to add backward compatibility code here. The exception was added to the 1.4 verifier because it wasn't possible to correctly compile valid java programs without it. So, targeting 1.4 makes

[Bug c++/18177] [4.0 regression] ICE with const_cast for undeclared variable

2004-10-28 Thread mmitchel at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |mark at codesourcery dot com |dot org | Status|NEW

[Bug tree-optimization/16728] [4.0 regression] std::set tests for allocator/insert core in make check-performance

2004-10-28 Thread dnovillo at gcc dot gnu dot org
--- Additional Comments From dnovillo at gcc dot gnu dot org 2004-10-28 18:04 --- This is fixed in tree-cleanup-branch. I'm bringing the patch into mainline. Ben, is this test out of the libstdc++ testsuite? Do we test it by default with make check? If not, would you mind adding it

[Bug target/18151] Disable building of fixincludes for avr target.

2004-10-28 Thread ericw at evcohs dot com
--- Additional Comments From ericw at evcohs dot com 2004-10-28 18:02 --- Created an attachment (id=7425) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7425&action=view) Proposed patch. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18151

[Bug ada/18205] New: Legal program rejected, RM 13.13.2(14)

2004-10-28 Thread ludovic dot brenta at insalien dot org
Debian bug #278687: -- The second parameter of T2'Class'Read is of type T2'Class, -- which should match an object of type T3, which is derived -- from T2. package test_127 is pragma elaborate_body; end test_127; with ada.streams; package body test_127 is type T1 is access all ada.streams.ro

[Bug ada/18204] Legal program rejected, completion of private type declaration

2004-10-28 Thread ludovic dot brenta at insalien dot org
--- Additional Comments From ludovic dot brenta at insalien dot org 2004-10-28 17:51 --- Debian bug #278686. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18204

[Bug ada/18204] New: Legal program rejected, completion of private type declaration

2004-10-28 Thread ludovic dot brenta at insalien dot org
-- adapted from: A. Imran ([EMAIL PROTECTED]) package Test_126 is task type T1; type T2 is tagged limited record x1: T1; end record; type T3 is new T2 with private; type T3_access is access T3; -- line 12 private type T3 is new T2 with null record; -- line 16

[Bug c++/17132] [3.4/4.0 Regression] GCC fails to eliminate function template specialization when argument deduction fails

2004-10-28 Thread mmitchel at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |mark at codesourcery dot com |dot org | Status|NEW

[Bug target/18151] Disable building of fixincludes for avr target.

2004-10-28 Thread denisc at overta dot ru
--- Additional Comments From denisc at overta dot ru 2004-10-28 17:30 --- Ok to apply. (Thanks for fixing !) Denis. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18151

[Bug c++/18077] [3.3/3.4/4.0 Regression] Members of anonymous namespaces get name mangled with first global variable instead of file name

2004-10-28 Thread fafa at freesurf dot ch
--- Additional Comments From fafa at freesurf dot ch 2004-10-28 17:27 --- (In reply to comment #2) > Using -z muldefs is beyond the scope of the C++ standard. > > There is no way to win for everyone here; some people really do not want the > random names because they want predictability

[Bug java/15735] Should be able to disable bytecode verification

2004-10-28 Thread tromey at gcc dot gnu dot org
--- Additional Comments From tromey at gcc dot gnu dot org 2004-10-28 17:14 --- FYI, not verifying in the compiler is somewhat tricky since the compiler relies on the verifier to create type maps it uses later on. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15735

[Bug libgcj/14781] Need flag to disable bytecode verification

2004-10-28 Thread tromey at gcc dot gnu dot org
--- Additional Comments From tromey at gcc dot gnu dot org 2004-10-28 17:14 --- I think we'll still want a flag allowing the user to disable verification. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14781

[Bug c++/18143] [4.0 Regression] Duplicated thunk with a huge member in the hierarchy

2004-10-28 Thread nathan at gcc dot gnu dot org
--- Additional Comments From nathan at gcc dot gnu dot org 2004-10-28 17:09 --- yes, I havebeen meaning to revert it, but wanted to measure the performance hit. I will make sure I get to it. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18143

[Bug c++/18143] [4.0 Regression] Duplicated thunk with a huge member in the hierarchy

2004-10-28 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-10-28 17:02 --- Nathan, this is a result of your change to limit the maximum size of a thunk. If we're going to keep that limit, we need to have a sorry() somewhere when making a bigger thunk. Or, we could restore the ab

[Bug other/14264] testsuite should set LC_ALL/LANG to C

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 17:01 --- This is more important now, that we have UTF8 turning the quote characters to UTF8 characters. -- What|Removed |Added ---

[Bug other/14264] all testsuite do not work with i18ned

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 17:00 --- *** Bug 18202 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug bootstrap/18202] make check fails many tests in en_US.UTF-8 locale

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 17:00 --- *** This bug has been marked as a duplicate of 14264 *** -- What|Removed |Added

[Bug c++/18203] Compiler suggests submitting a bug report after exiting while printing error message

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 16:56 --- If the problem only occurs in 3.2 and not in 3.2.2, the problem is already fixed. -- What|Removed |Added -

[Bug tree-optimization/18168] SPEC CPU2000 173.applu tree-loop-linear ICE

2004-10-28 Thread dberlin at dberlin dot org
--- Additional Comments From dberlin at dberlin dot org 2004-10-28 16:55 --- Subject: Re: SPEC CPU2000 173.applu tree-loop-linear ICE > --- Additional Comments From reichelt at gcc dot gnu dot org 2004-10-28 16:51 > --- > Reduced testcase: > >

[Bug c++/18203] Compiler suggests submitting a bug report after exiting while printing error message

2004-10-28 Thread ron at vaniwaarden dot org
--- Additional Comments From ron at vaniwaarden dot org 2004-10-28 16:54 --- (In reply to comment #0) Problem does not occur with g++ 3.2.2 or 3.4.1 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18203

[Bug c++/17729] [3.4/4.0 Regression] Duplicate __attribute__((deprecated)) warning

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 16:54 --- Patch here: . -- What|Removed |Added

[Bug c++/18203] New: Compiler suggests submitting a bug report after exiting while printing error message

2004-10-28 Thread ron at vaniwaarden dot org
The following should compile with an error message but the compiler dies in the middle of printing an error message #include template std::basic_ostream(charT)& operator<<(std::basic_ostream& os); -- Summary: Compiler suggests submitting a bug report after exiting

[Bug bootstrap/18202] New: make check fails many tests in en_US.UTF-8 locale

2004-10-28 Thread jakub at gcc dot gnu dot org
Recent %ification of error messages and warnings causes really many tests die, because they expect ' as opening and closing quote, while in UTF-8 locale they are different. Shouldn't gcc/testsuite/lib/*.exp set LC_ALL=C in the environment? I think it is bad to force users to use LC_ALL=C make check

[Bug tree-optimization/18168] SPEC CPU2000 173.applu tree-loop-linear ICE

2004-10-28 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2004-10-28 16:51 --- Reduced testcase: subroutine buts ( v ) dimension v( 5) do i = 1, 5 do j = 1, 5 do k = 1, 5 v( i ) = v( 1 )

[Bug tree-optimization/18168] SPEC CPU2000 173.applu tree-loop-linear ICE

2004-10-28 Thread dberlin at dberlin dot org
--- Additional Comments From dberlin at dberlin dot org 2004-10-28 16:36 --- Subject: Re: SPEC CPU2000 173.applu tree-loop-linear ICE No, not at all actually. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18168

[Bug java/17963] [4.0 Regression] Compiling a .jar files fails when files within .jar are in a different order

2004-10-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-28 16:35 --- Confirmed. -- What|Removed |Added Status|UNCONFIRMED |NEW E

  1   2   >