[Bug ada/22301] [4.1 Regression] Ada does not build into a clean prefix when unwind.h is not installed

2005-07-06 Thread charlet at adacore dot com
--- Additional Comments From charlet at adacore dot com 2005-07-06 06:06 --- Subject: Re: [4.1 Regression] Ada does not build into a clean prefix when unwind.h is not installed Ada is very confused it looks like as raise.c is both a host and target file which seems to me wrong.

[Bug bootstrap/20462] Make bootstrap fails with out of memory

2005-07-06 Thread us15 at os dot inf dot tu-dresden dot de
--- Additional Comments From us15 at os dot inf dot tu-dresden dot de 2005-07-06 07:28 --- Problem disappears by using less conservative ulimit settings. Bug can be closed. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20462

[Bug fortran/22290] Optimize Assigned GOTO to cause error with -O1 or higher

2005-07-06 Thread fengwang at gcc dot gnu dot org
--- Additional Comments From fengwang at gcc dot gnu dot org 2005-07-06 07:42 --- (In reply to comment #4) And another question, all the variables which have initial values are treat as static. Is this reasonable? Yes, this is reasonable. Confirm myself. In section 5.1 (Fortran95,

[Bug libstdc++/21193] provide better std::tr1::hash for std::string and std::wstring

2005-07-06 Thread tneumann at pi3 dot informatik dot uni-mannheim dot de
--- Additional Comments From tneumann at pi3 dot informatik dot uni-mannheim dot de 2005-07-06 07:42 --- How about using a union-cast to hash floating point numbers? Something like this unsigned hash(double v) { union { double a; unsigned long long b; } tmp; tmp.a=v; return

[Bug tree-optimization/21963] [4.1 Regression] ICE (seg fault) with -m64 (in IV-OPTS)

2005-07-06 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-07-06 08:13 --- Subject: Bug 21963 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-07-06 08:13:17 Modified files: gcc: ChangeLog tree-ssa-loop-ivopts.c

[Bug tree-optimization/22212] [4.1 Regression] SEGV in is_gimple_variable during loop-ivopts while building Ada RTS

2005-07-06 Thread rakdver at gcc dot gnu dot org
-- Bug 22212 depends on bug 21963, which changed state. Bug 21963 Summary: [4.1 Regression] ICE (seg fault) with -m64 (in IV-OPTS) http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21963 What|Old Value |New Value

[Bug tree-optimization/21963] [4.1 Regression] ICE (seg fault) with -m64 (in IV-OPTS)

2005-07-06 Thread rakdver at gcc dot gnu dot org
--- Additional Comments From rakdver at gcc dot gnu dot org 2005-07-06 08:16 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug tree-optimization/22212] [4.1 Regression] SEGV in is_gimple_variable during loop-ivopts while building Ada RTS

2005-07-06 Thread belyshev at depni dot sinp dot msu dot ru
--- Additional Comments From belyshev at depni dot sinp dot msu dot ru 2005-07-06 09:13 --- Fixed by patch for PR 21963, thanks Zdenek! *** This bug has been marked as a duplicate of 21963 *** -- What|Removed |Added

[Bug tree-optimization/21963] [4.1 Regression] ICE (seg fault) with -m64 (in IV-OPTS)

2005-07-06 Thread belyshev at depni dot sinp dot msu dot ru
--- Additional Comments From belyshev at depni dot sinp dot msu dot ru 2005-07-06 09:13 --- *** Bug 22212 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug tree-optimization/22236] [4.1 Regression] wrong code for casts and scev

2005-07-06 Thread belyshev at depni dot sinp dot msu dot ru
-- What|Removed |Added OtherBugsDependingO|22212 | nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22236

[Bug c++/22321] New: [4.1 Regression] Wrong code with SSA dominator optimizations

2005-07-06 Thread paul dot woegerer at nsc dot com
The following piece of code triggers a bug in the dominator optimizations. With -fno-tree-dominator-opts the correct result is given back. volatile int x; int main () { volatile int *vip; vip = x; const volatile int *cvip; cvip = vip; if (vip != cvip) return -1; return 0; } --

[Bug c++/22321] [4.1 Regression] Wrong code with SSA dominator optimizations

2005-07-06 Thread paul dot woegerer at nsc dot com
-- What|Removed |Added Keywords||wrong-code Known to work||3.4.4

[Bug c++/22321] [4.1 Regression] Wrong code with SSA dominator optimizations

2005-07-06 Thread falk at debian dot org
--- Additional Comments From falk at debian dot org 2005-07-06 09:53 --- It would be really helpful if you said what you expected, and what you got, and whether you can reproduce this with another target. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22321

[Bug c++/22322] New: __default__alloc_template bug

2005-07-06 Thread surojitmukerji at hsbc dot co dot in
The system: Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/3.2.3/specs Configured with: ../configure --prefix=/usr --mandir=/usr/share/man -- infodir=/usr/share/info --enable-shared --enable-threads=posix --disable- checking --with-system-zlib --enable-__cxa_atexit --host=i386-redhat-linux

[Bug libstdc++/22322] __default__alloc_template bug

2005-07-06 Thread pcarlini at suse dot de
--- Additional Comments From pcarlini at suse dot de 2005-07-06 10:13 --- Hi. Probably, you are not aware of the fact that the 3.2.x series is not maintained anymore (same for the 3.3.x series, actually). Also, in general, we are supposed to be enabled to reproduce the problem: this

[Bug libstdc++/19664] libstdc++ headers should have pop/push of the visibility around the declarations

2005-07-06 Thread pcarlini at suse dot de
--- Additional Comments From pcarlini at suse dot de 2005-07-06 10:40 --- should i update the mainline patch? Well, thanks for the offer, but the real blocker is 20218, which cannot be fixed yet, because, basically, *all* the back ends need tweaking:

[Bug c++/22321] [4.1 Regression] Wrong code with SSA dominator optimizations

2005-07-06 Thread paul dot woegerer at nsc dot com
--- Additional Comments From paul dot woegerer at nsc dot com 2005-07-06 10:55 --- Sorry i thought this trivial test case is self-explanatory. I would expect that main returns 0. Two pointers pointing to the same volatile int should compare to equal (as they do when I disable

[Bug libstdc++/22322] __default__alloc_template bug

2005-07-06 Thread surojitmukerji at hsbc dot co dot in
--- Additional Comments From surojitmukerji at hsbc dot co dot in 2005-07-06 11:11 --- Subject: Memo: Re: __default__alloc_template bug Thanks indeed. Sorry for the incomplete work. I am working on creating a self-contained testcase. Once done, I will shoot it accross. Meanwhile

[Bug fortran/22304] gfortran silently changes values in equilvanence'd variables

2005-07-06 Thread tkoenig at gcc dot gnu dot org
--- Additional Comments From tkoenig at gcc dot gnu dot org 2005-07-06 11:32 --- In this case, we forget the common block name. From the .t02.original: MAIN__ () { static union { int4 o[30]; } equiv.0; equiv.0.o[8] = 1; mysub (); } mysub () { static union {

[Bug tree-optimization/22319] [4.1 Regression] tree check: expected integer_cst, have cond_expr tree-ssa-structalias.c:2410

2005-07-06 Thread schwab at suse dot de
-- What|Removed |Added CC||schwab at suse dot de http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22319

[Bug c++/22321] [4.1 Regression] Wrong code with SSA dominator optimizations

2005-07-06 Thread falk at debian dot org
--- Additional Comments From falk at debian dot org 2005-07-06 12:11 --- (In reply to comment #2) With -O1 (which implies -ftree-dominator-opts) main returns -1. With -O1 -fno-tree-dominator-opts main returns 0. Do you really think that this bug is target specific ? I cannot

[Bug tree-optimization/22319] [4.1 Regression] tree check: expected integer_cst, have cond_expr tree-ssa-structalias.c:2410

2005-07-06 Thread laurent at guerby dot net
--- Additional Comments From laurent at guerby dot net 2005-07-06 12:20 --- It has also been reported on ia64-linux by Geert. http://gcc.gnu.org/ml/gcc/2005-07/msg00209.html bt on my x86_64-linux machine #0 internal_error (gmsgid=0xb4e6c0 tree check: %s, have %s in %s, at %s:%d) at

[Bug c++/22321] [4.1 Regression] Wrong code with SSA dominator optimizations

2005-07-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-06 13:10 --- Also I will note that this target is not in FSF's tree so there is no way to reproduce it either. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22321

[Bug c++/22321] [4.0/4.1 Regression] Wrong code with SSA dominator optimizations

2005-07-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-06 13:14 --- I can confirm it on the mainline and on the 4.0 branch. The mainline you need -fno-tree-ccp to reproduce it. -- What|Removed |Added

[Bug tree-optimization/21356] [4.1 Regression] Dominance error after aggressive dead code elimination (cd_dce)

2005-07-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-06 13:23 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug ada/22301] [4.1 Regression] Ada does not build into a clean prefix when unwind.h is not installed

2005-07-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-06 13:27 --- (In reply to comment #10) (In reply to comment #8) Subject: Re: [4.1 Regression] Ada does not build into a clean prefix when unwind.h is not installed I will try this patch later tonight after

[Bug ada/22301] [4.1 Regression] Ada does not build into a clean prefix when unwind.h is not installed

2005-07-06 Thread hainque at adacore dot com
--- Additional Comments From hainque at adacore dot com 2005-07-06 13:30 --- Subject: Re: [4.1 Regression] Ada does not build into a clean prefix when unwind.h is not installed pinskia at gcc dot gnu dot org wrote: This patch fixed the problem I was having, thanks. :) Thanks for

[Bug tree-optimization/22321] [4.0/4.1 Regression] Wrong code with SSA dominator optimizations

2005-07-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-06 13:31 --- This also fails too: volatile int x; int main () { volatile int *vip; vip = x; volatile int *cvip; cvip = vip; if (vip != cvip) return -1; return 0; } -- What|Removed

[Bug tree-optimization/22319] [4.1 Regression] tree check: expected integer_cst, have cond_expr tree-ssa-structalias.c:2410

2005-07-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-06 13:37 --- I can confirm this is fixed by the patch for PR 22140, posted here: http://gcc.gnu.org/ml/gcc/2005-07/msg00216.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22319

[Bug tree-optimization/22321] [4.0/4.1 Regression] Wrong code with SSA dominator optimizations

2005-07-06 Thread paul dot woegerer at nsc dot com
--- Additional Comments From paul dot woegerer at nsc dot com 2005-07-06 13:38 --- I used snapshot 4_1_20050508. After updating the crx-port to the latest snapshot (4_1_20050702) the bug disappeared. -- Sorry for inconvenience. (Its a pity that bugzilla doesn't let me enter

[Bug tree-optimization/22236] [4.1 Regression] wrong code for casts and scev

2005-07-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-06 13:40 --- Confirmed: -O0 passes -O1 fails -O2 passes (because of VRP) -O3 passes (because of VRP). -- What|Removed |Added

[Bug tree-optimization/22321] [4.0/4.1 Regression] Wrong code with SSA dominator optimizations

2005-07-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-06 13:41 --- (In reply to comment #7) I used snapshot 4_1_20050508. After updating the crx-port to the latest snapshot (4_1_20050702) the bug disappeared. But it is still a latent bug as I showed in comment #5, it is

[Bug bootstrap/20462] Make bootstrap fails with out of memory

2005-07-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-06 13:45 --- Closing as works for me then. -- What|Removed |Added Status|UNCONFIRMED

[Bug bootstrap/22323] New: bootstrap fails - ld: unrecognized option '-Wl,-rpath'

2005-07-06 Thread john at karsner dot net
make bootstrap fails with the following: /usr/local/i686-pc-linux-gnu/bin/ld: unrecognized option '-Wl,-rpath' /usr/local/i686-pc-linux-gnu/bin/ld: use the --help option for usage information collect2: ld returned 1 exit status make[3]: *** [jv-convert] Error 1 make[3]: Leaving directory

[Bug libstdc++/22322] __default__alloc_template bug

2005-07-06 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Severity|critical|normal http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22322

[Bug tree-optimization/22321] [4.0/4.1 Regression] Wrong code with SSA dominator optimizations

2005-07-06 Thread paul dot woegerer at nsc dot com
--- Additional Comments From paul dot woegerer at nsc dot com 2005-07-06 13:47 --- (In reply to comment #4) Also I will note that this target is not in FSF's tree so there is no way to reproduce it either. I've already submitted the crx-port some time ago.

[Bug tree-optimization/21356] [4.1 Regression] Dominance error after aggressive dead code elimination (cd_dce)

2005-07-06 Thread dberlin at dberlin dot org
--- Additional Comments From dberlin at gcc dot gnu dot org 2005-07-06 14:05 --- Subject: Re: [4.1 Regression] Dominance error after aggressive dead code elimination (cd_dce) On Tue, 2005-07-05 at 23:29 -0600, Jeffrey A Law wrote: DCE in aggressive mode sometimes is able to

[Bug bootstrap/22323] bootstrap fails - ld: unrecognized option '-Wl,-rpath'

2005-07-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-06 14:24 --- Is LD set in your environment? Also could show what the command this error message is comming from? -- What|Removed |Added

[Bug target/20617] [4.0/4.1 regression] shared SH libgcc is exporting too many symbols

2005-07-06 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Severity|critical|normal Target Milestone|--- |4.0.2

[Bug other/21322] O2 and O3 memory access error - compiled program - incorrect debug output

2005-07-06 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Severity|critical|normal Keywords||wrong-code

[Bug target/21149] invalid code generation for _mm_movehl_ps SSE intrisinc

2005-07-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-06 14:36 --- Note You are validing C aliasing rules: float *p = (float*)v; Use an union or -fno-strict-aliasing. But that does not change the problem. -- What|Removed |Added

[Bug c++/21687] [4.0/4.1 Regression] ICE on valid code

2005-07-06 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.0.2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21687

[Bug ada/22301] [4.1 Regression] Ada does not build into a clean prefix when unwind.h is not installed

2005-07-06 Thread hainque at adacore dot com
--- Additional Comments From hainque at adacore dot com 2005-07-06 14:50 --- Subject: Re: [4.1 Regression] Ada does not build into a clean prefix when unwind.h is not installed Olivier Hainque wrote: I'll test on our internal suite and followup. Went fine on x86-linux, committing

[Bug gcov/profile/22324] New: profiling gcc build produces Overflow merging

2005-07-06 Thread dariobirtic at gmx dot net
Tools versions: # uname -a Linux Beast 2.6.11-gentoo-r11 #2 Wed Jun 15 09:13:40 CEST 2005 x86_64 x86_64 x86_64 GNU/Linux # gcc -v Reading specs from /usr/lib/gcc/x86_64-pc-linux-gnu/3.4.4/specs Configured with: ../gcc-3.4.4/configure --libexecdir=/usr/lib --enable-shared

[Bug tree-optimization/22325] New: missed optimization in loop

2005-07-06 Thread pinskia at gcc dot gnu dot org
The following two functions should be the same: int foo(int a) { int i; for (i=0; i200; i++) { a = a + 5; } return a; } int foo(int a) { int i; for (i=0; i200; i++) ; return a+5*200; } The RTL optimizers catch this on ppc but not on x86. -- Summary: missed optimization in loop

[Bug tree-optimization/22325] missed optimization in loop

2005-07-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-06 15:23 --- And then we can remove the empty loop which is PR 17640. -- What|Removed |Added

[Bug libstdc++/22272] endless loop during compile of all-target-libstdc++-v3

2005-07-06 Thread lehmann at ans-netz dot de
--- Additional Comments From lehmann at ans-netz dot de 2005-07-06 15:39 --- Building it outside the sourcetree made it work... -- What|Removed |Added

[Bug tree-optimization/22326] New: promotions (from float to double) are not removed when they should be able to

2005-07-06 Thread pinskia at gcc dot gnu dot org
Take the following code: #include math.h float foo(float f, float x, float y) { return (fabs(f)*x+y); } on PPC, we should be able to produce: fabs f1,f1 fmadds f1,f1,f2,f3 blr But right now we produce: fabs f1,f1 fmadd f1,f1,f2,f3 frsp f1,f1

[Bug rtl-optimization/21254] [4.0 regression] Incorrect code with -funroll-loops for multiple targets with same code

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 16:14 --- Sadly, I didn't see the last comment in this PR until after 4.0.1 RC3. If there is a need for RC4, I will include this patch; otherwise, it will get moved back to 4.0.2. -- What|Removed

[Bug tree-optimization/21562] [4.0 Regression] Quiet bad codegen (unrolling + tail call interaction)

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 16:15 --- Sadly, I didn't see the last comment in this PR until after 4.0.1 RC3. If there is a 4.0.1 RC4, this patch will be included; otherwise, it will be in 4.0.2. -- What|Removed

[Bug middle-end/21728] [4.0/4.1 Regression] Nonlocal goto from an unused nested function

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 16:16 --- Jan has withdrawn the patch mentioned here. Changing target milestone to 4.0.2. -- What|Removed |Added

[Bug target/22083] [3.4/4.0 Regression] TARGET_C99_FUNCTIONS is wrongly defined on AIX 5.1

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 16:28 --- Reset target milestone to 4.0.2. (Gaby and I have a standing agreement that the more current release branch gets the target milestone.) Patch OK for 4.0.2. -- What|Removed

[Bug c++/22132] [4.0/4.1 Regression] Wrong code: upcasting a const class pointer to struct the class derives from (C/old-style cast)

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 16:29 --- This is a bug in my static_cast rewrite. I will fix it for 4.0.2. -- What|Removed |Added

[Bug c++/22263] [4.0/4.1 Regression] explicit instantiation fails to emit symbols defined later

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 16:38 --- This is rejects-valid, not wrong-code, because the failure mode is that the program doesn't link. (Unless you violate the ODR.) Postponed until 4.0.2. -- What|Removed

[Bug c++/22281] [4.0/4.1 Regression] C-Style cast does reinterpret_cast when it should do a static_cast

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 16:40 --- Yes, this is almost certainly a duplicate. The basic problem is that static_cast does not quite do as much as it should, so we fall back to reinterpret_cast. -- What|Removed

[Bug rtl-optimization/15248] [4.0 Regression] Reload may generate stores to read-only memory

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 16:41 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug c++/17053] [4.0/4.1 Regression] Repo functionality partially broken on AIX (collect2.c)

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 16:44 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug rtl-optimization/15248] [4.0 Regression] Reload may generate stores to read-only memory

2005-07-06 Thread law at redhat dot com
--- Additional Comments From law at redhat dot com 2005-07-06 16:47 --- Subject: Re: [4.0 Regression] Reload may generate stores to read-only memory On Wed, 2005-07-06 at 16:41 +, mmitchel at gcc dot gnu dot org wrote: --- Additional Comments From mmitchel at gcc dot

[Bug c/17913] [4.0 Regression] ICE jumping into statement expression

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 16:48 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug tree-optimization/22310] [4.1 Regression] ICE in in first_vi_for_offset

2005-07-06 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-07-06 16:50 --- Subject: Bug 22310 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-07-06 16:50:00 Modified files: gcc: ChangeLog tree-ssa-structalias.c

[Bug tree-optimization/22140] [4.1 Regression] ACATS ICE c37213j c37213l do_structure_copy, at tree-ssa-structalias.c:2372

2005-07-06 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-07-06 16:50 --- Subject: Bug 22140 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-07-06 16:50:00 Modified files: gcc: ChangeLog tree-ssa-structalias.c

[Bug tree-optimization/22319] [4.1 Regression] tree check: expected integer_cst, have cond_expr tree-ssa-structalias.c:2410

2005-07-06 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-07-06 16:50 --- Subject: Bug 22319 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-07-06 16:50:00 Modified files: gcc: ChangeLog tree-ssa-structalias.c

[Bug fortran/22327] New: Wrong code in array constructor

2005-07-06 Thread sfilippone at uniroma2 dot it
This is what I get from the attached test case, and it is clearly wrong (data gets copied from uninitialized memory). See also http://gcc.gnu.org/ml/fortran/2005-07/msg00059.html [EMAIL PROTECTED] TEMP]$ gfortran -v Using built-in specs. Target: i686-pc-linux-gnu Configured with:

[Bug c++/19159] [4.0/4.1 Regression] Undefined symbol: vtable for __cxxabiv1::__vmi_class_type_info

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 16:52 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug fortran/22327] Wrong code in array constructor

2005-07-06 Thread sfilippone at uniroma2 dot it
--- Additional Comments From sfilippone at uniroma2 dot it 2005-07-06 16:53 --- Created an attachment (id=9214) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=9214action=view) test case -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22327

[Bug rtl-optimization/20972] [4.0/4.1 Regression] Can't describe an early-clobber by an auto-inc

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 16:53 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug tree-optimization/21407] [4.1 Regression] wrong code with downcast in C++

2005-07-06 Thread dberlin at gcc dot gnu dot org
--- Additional Comments From dberlin at gcc dot gnu dot org 2005-07-06 16:54 --- http://gcc.gnu.org/ml/gcc-patches/2005-05/msg00796.html was the start of the discussion -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21407

[Bug c++/22139] [4.0/4.1 regression] Segfault

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 16:57 --- Mine. -- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |mark at

[Bug fortran/22304] gfortran silently changes values in equilvanence'd variables

2005-07-06 Thread albertm at uphs dot upenn dot edu
--- Additional Comments From albertm at uphs dot upenn dot edu 2005-07-06 16:59 --- (In reply to comment #2) First, thank you for taking an interest in this issue. Secondly, if I may speculate, it seems to me that there is a problem in how gfc_equiv structures are marked as used

[Bug rtl-optimization/22002] [4.0 Regression] internal consistency failure with -funroll-loops

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:02 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug c++/21799] [4.0/4.1 regression] Spurious ambiguity with pointers to members

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:02 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug c++/20103] [4.0/4.1 regression] ICE in create_tmp_var with C99 style struct initializer

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:02 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug c++/21903] [4.0 regression] Default argument of template function causes a compile-time error

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:02 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|3.4.5

[Bug middle-end/21894] [4.0/4.1 Regression] Invalid operand to binary operator with nested function

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:02 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug c++/21135] [4.0/4.1 Regression] a[-2] ICE at the top level

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:02 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug c++/19772] [3.4/4.0/4.1 Regression] crash on invalid template friend decl

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:02 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug gcov/profile/20736] [4.0 Regression] -fprofile-generate crashes on numerous occasions

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:02 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug c++/21440] [4.0/4.1 Regression] ICE with statement-as-expression

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:02 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug c++/22008] [4.0/4.1 Regression] ICE on valid code

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:02 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug target/21275] [4.0/4.1 Regression] gcc 4.0.0 crash with mingw when using stdout in global var

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:02 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug target/21169] [4.0 regression] ICE in reload_cse_simplify_operands with -fnon-call-exceptions -fPIC -O2

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:02 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug target/21081] [4.0/4.1 Regression] internal compiler error: verify_stmts failed.

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:02 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug target/21041] [4.0 Regression] ICE: output_operand: Cannot decompose address

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:02 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug c++/21210] [4.0/4.1 Regression] Trouble with __complex__ types default construction

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:03 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug c++/22139] [4.0/4.1 regression] Segfault

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:02 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug c++/21369] [4.0/4.1 Regression] Template function definition rejected if function return type begins with 'struct'

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:03 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug target/20928] [4.0/4.1 regression] ICE: unrecognizable insns

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:03 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug target/22017] [3.4/4.0/4.1 Regression] Error to pass struct parameter when compile with mingw's gcc.exe using -march=i386 -mrtd flags

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:03 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|3.4.5

[Bug target/21518] [4.0/4.1 Regression] unable to find a register to spill in class 'Q_REGS' with -fPIC and -O2

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:03 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug c++/21008] [3.4/4.0/4.1 Regression] [DR515] Access failure in accessing data member of base class from derived template class

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:03 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|3.4.5

[Bug c++/18681] [3.4/4.0/4.1 Regression] template friend declaration not recognized

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:03 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|3.4.5

[Bug target/20799] [4.0/4.1 Regression] bad relocs for new/delete overrides

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:03 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug rtl-optimization/18853] [4.0/4.1 Regression] ICE: genautomata.c:5238, error: verify_flow_info: Incorrect fallthru

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:03 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug tree-optimization/22321] [4.0/4.1 Regression] Wrong code with SSA dominator optimizations

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:03 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug tree-optimization/21562] [4.0 Regression] Quiet bad codegen (unrolling + tail call interaction)

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:03 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug middle-end/21291] [4.0/4.1 Regression] can't find a register in class 'GENERAL_REGS' while reloading 'asm'

2005-07-06 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-07-06 17:03 --- Postponed until 4.0.2. -- What|Removed |Added Target Milestone|4.0.1

[Bug fortran/22304] gfortran silently changes values in equilvanence'd variables

2005-07-06 Thread albertm at uphs dot upenn dot edu
--- Additional Comments From albertm at uphs dot upenn dot edu 2005-07-06 17:26 --- (In reply to comment #3) One more bit of speculation. I still think there is an issue with marking -used in gfc_equiv structures. The following change will make the test case work, but since I

[Bug tree-optimization/22319] [4.1 Regression] tree check: expected integer_cst, have cond_expr tree-ssa-structalias.c:2410

2005-07-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-06 17:31 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug tree-optimization/22140] [4.1 Regression] ACATS ICE c37213j c37213l do_structure_copy, at tree-ssa-structalias.c:2372

2005-07-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-06 17:31 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug tree-optimization/22319] [4.1 Regression] tree check: expected integer_cst, have cond_expr tree-ssa-structalias.c:2410

2005-07-06 Thread pinskia at gcc dot gnu dot org
-- Bug 22319 depends on bug 22140, which changed state. Bug 22140 Summary: [4.1 Regression] ACATS ICE c37213j c37213l do_structure_copy, at tree-ssa-structalias.c:2372 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22140 What|Old Value |New Value

  1   2   >