[Bug java/24018] [meta-bug] Patches that should be applied to 4.0 branch

2005-09-29 Thread rmathew at gcc dot gnu dot org
--- Additional Comments From rmathew at gcc dot gnu dot org 2005-09-29 07:45 --- (In reply to comment #9) > (In reply to comment #5) > > PR 19870. Although these patches are largeish, they have been tested in > > HEAD for > > some time and should be pretty safe. They are needed for OO.o

[Bug c++/23437] [3.4/4.0/4.1 Regression] error: ... cannot appear in a constant-expression

2005-09-29 Thread bonzini at gcc dot gnu dot org
--- Additional Comments From bonzini at gcc dot gnu dot org 2005-09-29 08:30 --- Giovanni, any news? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23437

[Bug c++/23437] [3.4/4.0/4.1 Regression] error: ... cannot appear in a constant-expression

2005-09-29 Thread bonzini at gcc dot gnu dot org
--- Additional Comments From bonzini at gcc dot gnu dot org 2005-09-29 08:34 --- > But putting these inside of a class doesn't work: > > class Foo { > Foo(){}; > ~Foo(){}; > static const double PI = M_PI; > static const double TWO_PI = (2.0*PI); > static const double HALF_PI =

[Bug tree-optimization/24117] New: [4.1 Regression] DCE kills call-clobbered part of structure

2005-09-29 Thread rguenth at gcc dot gnu dot org
For typedef struct { int x; int z; } Foo_t; char *xm; void bar(void); void foo(void) { Foo_t x; x.x = 1; x.z = 2; xm = (char *)&x; bar(); } where we decompose the struct for aliasing, the store to x.z is killed, which is wrong. Testcase is reduced from fortranio_2.f90 test. The

[Bug c++/24118] New: Access control bug for base class of templates

2005-09-29 Thread rguenth at gcc dot gnu dot org
struct Base { protected: typedef void (Base::*fnc)() const; void fnc_to_expose() const {} }; template struct Derived : public Base { fnc expose() { return &Base::fnc_to_expose; } fnc expose2() { return &Derived::fnc_to_expose; } }; void foo(void) { Derived i; i.expose();

[Bug middle-end/24109] [4.0 Regression] non unit-at-a-time failure with compound literals

2005-09-29 Thread jakub at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |jakub at gcc dot gnu dot org |dot org | URL|

[Bug middle-end/24053] [4.1 Regression] Ada bootstrap ICE in build_int_cst_wide, at tree.c:795

2005-09-29 Thread christian dot joensson at gmail dot com
--- Additional Comments From christian dot joensson at gmail dot com 2005-09-29 11:54 --- I'm testing Kenner's suggestion from http://gcc.gnu.org/ml/gcc/2005-09/msg00867.html ... -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24053

[Bug c/24119] New: gcc-4.x fails to build on AIX 5.2.0.0-ML04

2005-09-29 Thread h dot m dot brand at xs4all dot nl
Building gcc-4.x (anything post 4.0.0-20040919) fails for me on AIX 5.2 First problem is a missing -bbigtoc to the loader, causing a message like gcc -B/usr/local/ppc64/bin -g -DENABLE_CHECKING -DENABLE_ASSERT_CHECKING -DIN_ GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes

[Bug tree-optimization/23911] Failure to propagate constants from a const initializer for _Complex

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-29 12:25 --- Subject: Bug 23911 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-09-29 12:25:10 Modified files: gcc: ChangeLog tree-ssa-ccp.c gcc

[Bug libfortran/23803] [4.0 only] [mingw32] getlog malfunction

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-29 12:29 --- Subject: Bug 23803 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-09-29 12:28:52 Modified files: libgfortran: Change

[Bug libfortran/23380] [4.0 only] [mingw32] cpu_time intrinsic malfunction

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-29 12:29 --- Subject: Bug 23380 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-09-29 12:28:52 Modified files: libgfortran: Change

[Bug libfortran/23802] [4.0 only] [mingw32] sleep malfunction

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-29 12:29 --- Subject: Bug 23802 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-09-29 12:28:52 Modified files: libgfortran: Change

[Bug libfortran/23380] [mingw32] cpu_time intrinsic malfunction

2005-09-29 Thread fxcoudert at gcc dot gnu dot org
--- Additional Comments From fxcoudert at gcc dot gnu dot org 2005-09-29 12:29 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug libfortran/23802] [mingw32] sleep malfunction

2005-09-29 Thread fxcoudert at gcc dot gnu dot org
--- Additional Comments From fxcoudert at gcc dot gnu dot org 2005-09-29 12:30 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug libfortran/23803] [mingw32] getlog malfunction

2005-09-29 Thread fxcoudert at gcc dot gnu dot org
--- Additional Comments From fxcoudert at gcc dot gnu dot org 2005-09-29 12:30 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug java/24120] New: jc1 incorrectly uses libiberty hashes

2005-09-29 Thread kostikbel at ukr dot net
(At least ) in gcc/java/jfc-io.c, the memoized_dirlists hash is created by the call htab_create (37, htab_hash_string <-- NOTE THIS, memoized_dirlist_lookup_eq, NULL); Actually, htab contains the structures (memoized_dirlist_entry), not the strings. All went ok until hashtab.c decides it need t

[Bug tree-optimization/23911] Failure to propagate constants from a const initializer for _Complex

2005-09-29 Thread steven at gcc dot gnu dot org
--- Additional Comments From steven at gcc dot gnu dot org 2005-09-29 12:40 --- . -- What|Removed |Added Status|NEW |RESOLVED R

[Bug middle-end/19721] [meta-bug] optimizations that CSE still catches

2005-09-29 Thread steven at gcc dot gnu dot org
-- Bug 19721 depends on bug 23911, which changed state. Bug 23911 Summary: Failure to propagate constants from a const initializer for _Complex http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23911 What|Old Value |New Value

[Bug other/23111] [meta-bug] GCC 4.2 pending patches

2005-09-29 Thread steven at gcc dot gnu dot org
-- Bug 23111 depends on bug 23911, which changed state. Bug 23911 Summary: Failure to propagate constants from a const initializer for _Complex http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23911 What|Old Value |New Value

[Bug java/24018] [meta-bug] Patches that should be applied to 4.0 branch

2005-09-29 Thread rmathew at gcc dot gnu dot org
--- Additional Comments From rmathew at gcc dot gnu dot org 2005-09-29 12:52 --- The fix for PR20338 is also needed by the fix for PR19870. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24018

[Bug target/24119] gcc-4.x fails to build on AIX 5.2.0.0-ML04

2005-09-29 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Component|c |target Keywords||build http://gcc.gnu.org/bugzilla/show_bug.cgi?id=2411

[Bug tree-optimization/24117] [4.1 Regression] DCE kills call-clobbered part of structure

2005-09-29 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-29 13:29 --- Confirmed. -- What|Removed |Added CC||dberlin at

[Bug tree-optimization/24123] New: Massive performance regression for -ffast-math due to the recip tree pass

2005-09-29 Thread uros at kss-loka dot si
There is a huge performance regression due to the recip tree pass. A problem was found in povray-3.6.1, where -ffast-math was 3 times slower (for -mfpmath=sse or -mfpmath=387). The problem was traced to POVFPU_RunDefault function that was found to be more than 20 (twenty!) times slower: with -ffa

[Bug rtl-optimization/24123] Massive performance regression for -ffast-math due to the recip tree pass

2005-09-29 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-29 14:08 --- This is really a RA issue rather than anything else. -- What|Removed |Added Compone

[Bug rtl-optimization/24123] Massive performance regression for -ffast-math due to the recip tree pass

2005-09-29 Thread uros at kss-loka dot si
--- Additional Comments From uros at kss-loka dot si 2005-09-29 14:11 --- Created an attachment (id=9837) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=9837&action=view) gcc -O2 -ffast-math Testcase, compile with gcc -O2 -ffast-math. The same problem can be found in povray-3.6.1/s

[Bug rtl-optimization/24123] Massive performance regression for -ffast-math due to the recip tree pass

2005-09-29 Thread uros at kss-loka dot si
--- Additional Comments From uros at kss-loka dot si 2005-09-29 14:25 --- (In reply to comment #1) > This is really a RA issue rather than anything else. Please this patch... Index: tree-ssa-math-opts.c === RCS file: /cvs/

[Bug c++/17805] too liberal operator lookup

2005-09-29 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-09-29 14:28 --- The patch: http://gcc.gnu.org/ml/gcc-patches/2005-02/msg00453.html is basically OK. However, please make the folloing changes before check-in: + && (same_type_p (TYPE_MAIN_VARIANT (TREE_TY

[Bug rtl-optimization/24123] Massive performance regression for -ffast-math due to the recip tree pass

2005-09-29 Thread uros at kss-loka dot si
--- Additional Comments From uros at kss-loka dot si 2005-09-29 14:31 --- I forgot to add that with patch from comment #3 POVray starts to fly: Each sample counts as 0.00195312 seconds. % cumulative self self total time seconds secondscalls s

Re: [Bug rtl-optimization/24123] Massive performance regression for -ffast-math due to the recip tree pass

2005-09-29 Thread Andrew Pinski
> > > --- Additional Comments From uros at kss-loka dot si 2005-09-29 14:25 > --- > (In reply to comment #1) > > This is really a RA issue rather than anything else. > > Please this patch... No, the RA is supposed to move the divisions so that things don't spill. Can you also try the

[Bug rtl-optimization/24123] Massive performance regression for -ffast-math due to the recip tree pass

2005-09-29 Thread pinskia at physics dot uc dot edu
--- Additional Comments From pinskia at physics dot uc dot edu 2005-09-29 14:32 --- Subject: Re: Massive performance regression for -ffast-math due to the recip tree pass > > > --- Additional Comments From uros at kss-loka dot si 2005-09-29 14:25 > --- > (In reply to comme

[Bug c/21419] [4.0/4.1 Regression] Accepts writting to const via asm

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-29 14:53 --- Subject: Bug 21419 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-09-29 14:53:39 Modified files: gcc: ChangeLog gimplify.c gcc/tes

[Bug tree-optimization/15459] [meta-bug] there should be a tree combiner like the rtl one

2005-09-29 Thread steven at gcc dot gnu dot org
--- Additional Comments From steven at gcc dot gnu dot org 2005-09-29 15:38 --- A number of xfailed tests in the tree-ssa test suite (e.g. bool-3.c) should start working if you add a tree combiner. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15459

[Bug libfortran/24112] Reopening file with STATUS='OLD' doesn't work

2005-09-29 Thread fxcoudert at gcc dot gnu dot org
-- What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed||1 Last reconfirmed|-00-00 00:00:00 |2005-09-

[Bug fortran/23663] rejects entry point as a value

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-29 16:03 --- Subject: Bug 23663 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-09-29 16:02:25 Modified files: gcc/fortran: Change

[Bug c++/21983] [3.4/4.0 Regression] multiple diagnostics

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-29 16:10 --- Subject: Bug 21983 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-09-29 16:09:43 Modified files: gcc/cp : Change

[Bug fortran/17031] Cray pointers not supported

2005-09-29 Thread fxcoudert at gcc dot gnu dot org
--- Additional Comments From fxcoudert at gcc dot gnu dot org 2005-09-29 16:14 --- We now have a proposed patch for that. It should be commited as soon as paperwork issues are resolved. -- What|Removed |Added --

[Bug libfortran/24112] Reopening file with STATUS='OLD' doesn't work

2005-09-29 Thread jblomqvi at cc dot hut dot fi
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |jblomqvi at cc dot hut dot |dot org |fi Status|NEW

[Bug fortran/23663] rejects entry point as a value

2005-09-29 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|4.1.0 |4.0.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23663

[Bug c++/21983] [3.4/4.0 Regression] multiple diagnostics

2005-09-29 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-29 16:18 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug c/21419] [4.0 Regression] Accepts writting to const via asm

2005-09-29 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-29 16:20 --- Fixed at least on the mainline. -- What|Removed |Added Known to fail|4.0.0 4.1.0

[Bug fortran/22175] BYTE Type Statement

2005-09-29 Thread fxcoudert at gcc dot gnu dot org
--- Additional Comments From fxcoudert at gcc dot gnu dot org 2005-09-29 16:21 --- We do have a patch adding that enhancement. -- What|Removed |Added URL|

[Bug fortran/24110] INTERVAL: Error: Unclassifiable statement

2005-09-29 Thread uttamp at us dot ibm dot com
--- Additional Comments From uttamp at us dot ibm dot com 2005-09-29 16:24 --- My apologies if INTERVAL is not a reserved keyword as part of fortran 95 standard? I thought it is part of the standard, or is it an extension to it? Please close it appropriately if this is invalid. Sorry fo

[Bug c++/24118] Access control bug for base class of templates

2005-09-29 Thread bangerth at dealii dot org
--- Additional Comments From bangerth at dealii dot org 2005-09-29 16:29 --- Confirmed. Seems as if this never worked. W. -- What|Removed |Added Status|UNCONFI

[Bug c++/17805] too liberal operator lookup

2005-09-29 Thread rth at gcc dot gnu dot org
--- Additional Comments From rth at gcc dot gnu dot org 2005-09-29 16:31 --- Subject: Re: too liberal operator lookup On Thu, Sep 29, 2005 at 02:28:03PM -, mmitchel at gcc dot gnu dot org wrote: > Also, please code this using a loop: > > for (i = 0; i < 2; ++i) { > if (i ==

[Bug libstdc++/23978] tr1::tie doesn't work with std::pair

2005-09-29 Thread pcarlini at suse dot de
-- What|Removed |Added Target Milestone|--- |4.0.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23978

[Bug libgcj/24125] New: use dlmopen to avoid copying .so

2005-09-29 Thread tromey at gcc dot gnu dot org
Currently, SharedLibHelper will make a copy of a .so in some situations. Specifically, this happens if the .so has already been opened by a different class loader. On systems that support it, we could (perhaps) use the dlmopen() call to avoid this copy. This would be more efficient. Note that th

[Bug java/24120] jc1 incorrectly uses libiberty hashes

2005-09-29 Thread tromey at gcc dot gnu dot org
--- Additional Comments From tromey at gcc dot gnu dot org 2005-09-29 17:18 --- I'm testing a patch. -- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |

[Bug tree-optimization/22488] [4.1 Regression] push_fields_onto_fieldstack calculates offset incorrectly

2005-09-29 Thread jason at redhat dot com
--- Additional Comments From jason at redhat dot com 2005-09-29 17:19 --- Subject: Re: [4.1 Regression] push_fields_onto_fieldstack calculates offset incorrectly mark at codesourcery dot com wrote: > > What I meant by "lying" (an admittedly overly contentious choice of > word) was th

[Bug middle-end/24053] [4.1 Regression] Ada bootstrap ICE in build_int_cst_wide, at tree.c:795

2005-09-29 Thread ebotcazou at gcc dot gnu dot org
--- Additional Comments From ebotcazou at gcc dot gnu dot org 2005-09-29 17:24 --- > The problem here is that we have to create some types before setting > size_type, and in creating those types we need to set their size to some > integral constant, and that integral constant has to have

[Bug libgcj/24125] use dlmopen to avoid copying .so

2005-09-29 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-29 17:29 --- Confirmed. -- What|Removed |Added Status|UNCONFIRMED |NEW E

[Bug libstdc++/23978] tr1::tie doesn't work with std::pair

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-29 17:42 --- Subject: Bug 23978 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-09-29 17:42:42 Modified files: libstdc++-v3 : ChangeLog libstdc++-v3/inclu

[Bug fortran/24110] INTERVAL: Error: Unclassifiable statement

2005-09-29 Thread kargl at gcc dot gnu dot org
--- Additional Comments From kargl at gcc dot gnu dot org 2005-09-29 17:54 --- INTERVAL is not part of the Fortran 95 and a text search of the final committee draft of the Fortran 2003 shows that INTERVAL is not included in Fortran 2003. A module that implements interval arithmetic can

[Bug fortran/24005] Ambiguous INTERFACE leads to seg fault

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-29 18:10 --- Subject: Bug 24005 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-09-29 18:10:33 Modified files: gcc/fortran: Change

[Bug tree-optimization/22488] [4.1 Regression] push_fields_onto_fieldstack calculates offset incorrectly

2005-09-29 Thread mark at codesourcery dot com
--- Additional Comments From mark at codesourcery dot com 2005-09-29 18:20 --- Subject: Re: [4.1 Regression] push_fields_onto_fieldstack calculates offset incorrectly jason at redhat dot com wrote: >>I agree that using COMPONENT_REFs is good, but I think that the >>FIELD_DECL for B s

[Bug fortran/24005] Ambiguous INTERFACE leads to seg fault

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-29 18:22 --- Subject: Bug 24005 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-09-29 18:22:21 Modified files: gcc/testsuite : Change

[Bug fortran/24005] Ambiguous INTERFACE leads to seg fault

2005-09-29 Thread kargl at gcc dot gnu dot org
--- Additional Comments From kargl at gcc dot gnu dot org 2005-09-29 18:23 --- Backport from 4.1.0 to 4.0.3. -- What|Removed |Added Status|UNCONFIRMED

[Bug libstdc++/23978] tr1::tie doesn't work with std::pair

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-29 18:31 --- Subject: Bug 23978 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-09-29 18:30:51 Modified files: libstdc++-v3 : Change

[Bug libstdc++/23978] tr1::tie doesn't work with std::pair

2005-09-29 Thread pcarlini at suse dot de
--- Additional Comments From pcarlini at suse dot de 2005-09-29 18:32 --- Fixed for 4.0.3. -- What|Removed |Added Status|NEW |RESOLVED

[Bug libstdc++/24064] tr1::unordered_map seems to seg-fault when caching hash values

2005-09-29 Thread pcarlini at suse dot de
--- Additional Comments From pcarlini at suse dot de 2005-09-29 18:34 --- Looking into it... -- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |pcarlini

[Bug tree-optimization/24126] New: [4.1 Regression] tree-stdarg.c causes wrong code, not tracking va_list variable correctly

2005-09-29 Thread pinskia at gcc dot gnu dot org
Take the following code: #include int foo (int a, ...) { va_list ap; va_list ap1; va_list ap2; va_list ap3; va_list ap4; va_start (ap, a); int b; ap1 = ap; ap2 = ap1; do { ap1 = ap2; b = va_arg (ap1, int); ap2 = ap1; } while (b > 10); return a + b; } int

[Bug tree-optimization/24126] [4.1 Regression] tree-stdarg.c causes wrong code, not tracking va_list variable correctly

2005-09-29 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added CC||jakub at gcc dot gnu dot org Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzill

[Bug c/24068] Unconditional warning when using -combine

2005-09-29 Thread drow at false dot org
--- Additional Comments From drow at false dot org 2005-09-29 18:58 --- Subject: Re: Unconditional warning when using -combine On Mon, Sep 26, 2005 at 08:46:20PM -, dann at godzilla dot ics dot uci dot edu wrote: > > So this about the following: > > int f(a) > > int a; > > { > >

[Bug libfortran/24112] Reopening file with STATUS='OLD' doesn't work

2005-09-29 Thread jblomqvi at cc dot hut dot fi
--- Additional Comments From jblomqvi at cc dot hut dot fi 2005-09-29 18:59 --- Patch here: http://gcc.gnu.org/ml/gcc-patches/2005-09/msg01841.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24112

[Bug java/6865] gcj: segmentation fault on incorrect input

2005-09-29 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |3.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=6865

[Bug rtl-optimization/24069] [4.1 Regression] ice during feedback stage of profiledbootstrap on powerpc

2005-09-29 Thread steinmtz at us dot ibm dot com
--- Additional Comments From steinmtz at us dot ibm dot com 2005-09-29 19:26 --- Here's the backtrace: #0 make_edges (min=0x402ebe70, max=0x4070edd0, update_p=1) at /home/steinmtz/work/src/mainline/gcc/gcc/cfgbuild.c:350 #1 0x1048d144 in find_many_sub_basic_blocks (blocks=0x0) at /h

[Bug java/24127] New: ICE in libjava.compile/PR6865.java reported as "PASS" in testsuite.

2005-09-29 Thread daney at gcc dot gnu dot org
Make -k check in libjava shows an ICE on this test case, However this is reported as a PASS. To reproduce: Run make -k check in libjava. -- Summary: ICE in libjava.compile/PR6865.java reported as "PASS" in testsuite. Product: gcc Version: 4.1.

[Bug tree-optimization/24117] [4.1 Regression] struct is not marked fully as call clobbered

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-29 19:38 --- Subject: Bug 24117 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-09-29 19:38:01 Modified files: gcc: ChangeLog tree-ssa-structalias.c Add

[Bug tree-optimization/24117] [4.1 Regression] struct is not marked fully as call clobbered

2005-09-29 Thread dberlin at gcc dot gnu dot org
--- Additional Comments From dberlin at gcc dot gnu dot org 2005-09-29 19:39 --- Fixed -- What|Removed |Added Status|NEW |RESOLVED

[Bug testsuite/24128] New: ICE in libjava.compile/PR6865.java reported as "PASS" in testsuite.

2005-09-29 Thread daney at gcc dot gnu dot org
libjava.compile/PR6865.xfail says that the test 'shouldfail'. However in addition to reporting an error, the compiler ICEs. I am not sure what the right answer is, but reporting PASS for an ICE probably is not what we want. -- Summary: ICE in libjava.compile/PR6865.java reported as "

[Bug translation/24039] cpp segfaults when a non-existent include is encountered

2005-09-29 Thread heas at shrubbery dot net
--- Additional Comments From heas at shrubbery dot net 2005-09-29 19:43 --- Subject: Re: cpp segfaults when a non-existent include is encountered Fri, Sep 23, 2005 at 10:18:27PM -, heas at shrubbery dot net: > > --- Additional Comments From heas at shrubbery dot net 2005-09-2

[Bug tree-optimization/24126] [4.1 Regression] tree-stdarg.c causes wrong code, not tracking va_list variable correctly

2005-09-29 Thread jakub at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |jakub at gcc dot gnu dot org |dot org | Status|UNCONFIRMED

[Bug fortran/20541] TR 15581: ALLOCATABLE components

2005-09-29 Thread erik dot edelmann at iki dot fi
--- Additional Comments From erik dot edelmann at iki dot fi 2005-09-29 19:48 --- (In reply to comment #5) > Working on a patch. Turned out to be much more work than I first thought. I'll leave it for now. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20541

[Bug translation/24039] cpp segfaults when a non-existent include is encountered

2005-09-29 Thread heas at shrubbery dot net
--- Additional Comments From heas at shrubbery dot net 2005-09-29 20:07 --- Subject: Re: cpp segfaults when a non-existent include is encountered dgettext.c thinks that libintl_dcgettext returns an int. Which I do not understand, since it includes libintl.h which has: # 163 "./libint

[Bug c/24068] Unconditional warning when using -combine

2005-09-29 Thread dann at godzilla dot ics dot uci dot edu
--- Additional Comments From dann at godzilla dot ics dot uci dot edu 2005-09-29 20:10 --- (In reply to comment #9) > Subject: Re: Unconditional warning when using -combine > > On Mon, Sep 26, 2005 at 08:46:20PM -, dann at godzilla dot ics dot uci dot edu wrote: > > > So this about

[Bug middle-end/24129] New: [4.0 4.1 regression] bogus warning is used uninitialized in this function

2005-09-29 Thread doko at debian dot org
$ gcc -O3 -c -Wall -fno-strict-aliasing marshal.i ../Python/marshal.c: In function 'PyMarshal_ReadShortFromFile': ../Python/marshal.c:342: warning: 'rf.end' is used uninitialized in this function ../Python/marshal.c:342: warning: 'rf.ptr' is used uninitialized in this function The warning is not

[Bug middle-end/24129] [4.0 4.1 regression] bogus warning is used uninitialized in this function

2005-09-29 Thread doko at debian dot org
--- Additional Comments From doko at debian dot org 2005-09-29 20:24 --- Created an attachment (id=9841) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=9841&action=view) preprocessed source -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24129

[Bug middle-end/24129] [4.0 4.1 regression] bogus warning is used uninitialized in this function

2005-09-29 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-29 20:26 --- I really doubt this is bogus but I have not looked into the source yet. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24129

[Bug middle-end/24129] [4.0 4.1 regression] bogus warning is used uninitialized in this function

2005-09-29 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-29 20:35 --- Lets look at the two functions: static int r_short(RFILE *p) { register short x; x = ((p)->fp ? _IO_getc ((p)->fp) : (((p)->ptr != (p)->end) ? (unsigned char)*(p)->ptr++ : (-1))); x |= ((p)->fp ? _IO_g

[Bug middle-end/24129] [4.0 4.1 regression] bogus warning is used uninitialized in this function

2005-09-29 Thread doko at debian dot org
--- Additional Comments From doko at debian dot org 2005-09-29 20:40 --- The line number points to the inlined function, not to 'PyMarshal_ReadShortFromFile'. Is this intended? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24129

[Bug middle-end/24129] [4.0 4.1 regression] bogus warning is used uninitialized in this function

2005-09-29 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-29 20:44 --- (In reply to comment #4) > The line number points to the inlined function, not to > 'PyMarshal_ReadShortFromFile'. Is this intended? In a way yes but that would be PR 17506 which I have not submitted the pat

[Bug ada/24003] [4.1 Regression] ACATS FAIL 17 regressions on x86-linux, fixed and decimal arithmetic broken

2005-09-29 Thread laurent at guerby dot net
--- Additional Comments From laurent at guerby dot net 2005-09-29 21:08 --- A priori no exception is ever raised in this test. Who could help on this one? Is reverting this patch an option? Laurent -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24003

[Bug ada/24003] [4.1 Regression] ACATS FAIL 17 regressions on x86-linux, fixed and decimal arithmetic broken

2005-09-29 Thread christian dot joensson at gmail dot com
-- What|Removed |Added CC||christian dot joensson at ||gmail dot com http://gcc.gnu.org/bu

[Bug bootstrap/24130] New: 3.4.3 Bootstrap failed on AIX 5.3

2005-09-29 Thread nospampeeps at yahoo dot com
I'm trying to build gcc-3.4.3 on AIX 5.3 and the bootstrap fails when building, what I assume, is the 64-bit pthread libraries. > ../gcc-3.4.3/config.guess powerpc-ibm-aix5.3.0.0 ../gcc-3.4.3/configure --srcdir=../gcc-3.4.3 --enable-languages=c,c++ --enable- threads=aix --disable-nls

[Bug fortran/23677] -fno-automatic does not accept legal save statements

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-29 21:27 --- Subject: Bug 23677 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-09-29 21:27:35 Modified files: gcc/fortran: Change

[Bug fortran/18518] equivalenced variables are not saved

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-29 21:30 --- Subject: Bug 18518 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-09-29 21:30:01 Modified files: gcc/fortran: Change

[Bug fortran/23677] -fno-automatic does not accept legal save statements

2005-09-29 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-29 21:32 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug fortran/18518] equivalenced variables are not saved

2005-09-29 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-29 21:32 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug fortran/20405] [meta-bug] equivalenced variable problems

2005-09-29 Thread pinskia at gcc dot gnu dot org
-- Bug 20405 depends on bug 18518, which changed state. Bug 18518 Summary: equivalenced variables are not saved http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18518 What|Old Value |New Value -

[Bug fortran/19292] [meta-bug] g77 features lacking in gfortran

2005-09-29 Thread pinskia at gcc dot gnu dot org
-- Bug 19292 depends on bug 15326, which changed state. Bug 15326 Summary: [4.0 only] ICE with assumed length character strings http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15326 What|Old Value |New Value -

[Bug middle-end/24053] [4.1 Regression] Ada bootstrap ICE in build_int_cst_wide, at tree.c:795

2005-09-29 Thread chrisp_42 at bigpond dot com
--- Additional Comments From chrisp_42 at bigpond dot com 2005-09-29 21:33 --- (In reply to comment #8) > I'm testing Kenner's suggestion from > http://gcc.gnu.org/ml/gcc/2005-09/msg00867.html ... Works for me on i686-linux Bootstrap finished and no additional ACATS failures. -- htt

[Bug middle-end/24109] [4.0 Regression] non unit-at-a-time failure with compound literals

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
/testsuite : ChangeLog Added files: gcc/testsuite/gcc.c-torture/execute: 20050929-1.c Log message: PR middle-end/24109 * c-decl.c (c_write_global_declarations_1): If any wrapup_global_declaration_2 call returned true, restart the loop. * gcc.c-torture

[Bug middle-end/24109] [4.0 Regression] non unit-at-a-time failure with compound literals

2005-09-29 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-29 21:35 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug middle-end/24109] [4.0 Regression] non unit-at-a-time failure with compound literals

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
: ChangeLog c-decl.c gcc/testsuite : ChangeLog Added files: gcc/testsuite/gcc.c-torture/execute: 20050929-1.c Log message: PR middle-end/24109 * c-decl.c (c_write_global_declarations_1): If any wrapup_global_declaration_2 call returned true, restart the loop

[Bug fortran/23884] failure in gcc

2005-09-29 Thread tobi at gcc dot gnu dot org
--- Additional Comments From tobi at gcc dot gnu dot org 2005-09-29 21:51 --- Can you try to isolate a shorter testcase? It's really difficult to see what's happening in this large file. -- What|Removed |Added

[Bug fortran/23884] failure in gcc

2005-09-29 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-29 21:53 --- Note I reduced it using delta so the all of my reduced tescase came exactly from the file and nothing else. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23884

[Bug fortran/23884] failure in gcc

2005-09-29 Thread tobi at gcc dot gnu dot org
--- Additional Comments From tobi at gcc dot gnu dot org 2005-09-29 22:10 --- (In reply to comment #7) > Note I reduced it using delta so the all of my reduced tescase came exactly from the file and nothing > else. This is not true. Even if the constants appearing in the data statemen

[Bug middle-end/24053] [4.1 Regression] Ada bootstrap ICE in build_int_cst_wide, at tree.c:795

2005-09-29 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-09-29 22:11 --- Subject: Bug 24053 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-09-29 22:11:14 Modified files: gcc: ChangeLog stor-layout.c Log message

[Bug middle-end/24053] [4.1 Regression] ICE in build_int_cst_wide, at tree.c:795

2005-09-29 Thread ebotcazou at gcc dot gnu dot org
--- Additional Comments From ebotcazou at gcc dot gnu dot org 2005-09-29 22:14 --- Fix installed on behalf of Richard. -- What|Removed |Added Status|NEW

[Bug other/24131] New: Error in log2 man page

2005-09-29 Thread PTrenholme at 4DV dot net
The manual page states that log2 returns the natural log, not the base two log. Note: The documentation problem was first seen on a RH9 system, and I saw it on my FC4 system. Both are RH distros (sort of), so it may not be a general problem. Fairly minor, in any case. -- Summary: Erro

[Bug other/24131] Error in log2 man page

2005-09-29 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-29 22:50 --- log2 man page is not maintained by GCC, in fact almost none of the standard C library is part of GCC but part of glibc. the man pages are maintained by a different project though. -- What

  1   2   >