[Bug c++/27494] [4.0/4.1/4.2 regression] ICE on invalid template parameter

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-05-10 05:37 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCON

[Bug middle-end/27528] compiling linux kernels 2.6.16.14/15 2.6.17-rc3 on powerpc (7450) get error on long exixting code

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-05-10 05:30 --- This is not a bug and here is why: Section anchors is turned on so that "Hi" is turned into a symbol offset of an anchor so it is no longer a symbolic constant. This never really would have worked in anyways in the

[Bug middle-end/27528] compiling linux kernels 2.6.16.14/15 2.6.17-rc3 on powerpc (7450) get error on long exixting code

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-05-10 05:24 --- Reduced testcase: int f(void) { asm ("%0" : : "i"("Hi")); } I don't think this is valid code: `i' An immediate integer operand (one with constant value) is allowed. This includes symbolic constants whose values w

[Bug middle-end/27528] compiling linux kernels 2.6.16.14/15 2.6.17-rc3 on powerpc (7450) get error on long exixting code

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-05-10 04:03 --- "i" (__FILE__), "i" (__FUNCTION__) The second makes less sense but both of them are the cause. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added -

[Bug c/27528] compiling linux kernels 2.6.16.14/15 2.6.17-rc3 on powerpc (7450) get error on long exixting code

2006-05-09 Thread malitzke at metronets dot com
--- Comment #1 from malitzke at metronets dot com 2006-05-10 03:04 --- There are similar problems with other kernel modules that did not occur before. It looks like the asm expansion causes problems with some rs6000 work done by David Edelsohn. Will be glad to assist in solving this hope

[Bug c/27528] New: compiling linux kernels 2.6.16.14/15 2.6.17-rc3 on powerpc (7450) get error on long exixting code

2006-05-09 Thread malitzke at metronets dot com
hecking --disable-multilib --disable-nls --disable-werror --with-gnu-ld --with-mpfr-dir=/src/src/mpfr-2.2.0 --with-mpfr=/usr/lib --with-gmp-dir=/src/src/gmp-4.2 --with-gmp=/usr/lib --enable-languages=c,c++ --with-cpu=7450 --enable-clocale=gnu Thread model: posix gcc version 4.2.0 20060509 (experim

[Bug c++/27527] invalid types produced out of argument deduction (SFINAE bug)

2006-05-09 Thread sebor at roguewave dot com
--- Comment #1 from sebor at roguewave dot com 2006-05-10 01:07 --- Here's a test case designed to exhaustively exercise all cases mentioned in 14.8.2, p2. Hope it helps. $ cat ~/tmp/t.cpp && (c=1; while [ $c -lt 15 ]; do printf "%s: " "$c"; gcc -DCASE=$c ~/tmp/t.cpp 2>/dev/null; if [ $

[Bug target/27521] internal compiler error: in rs6000_split_multireg_move, at config/rs6000/rs6000.c:10613

2006-05-09 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Severity|blocker |normal GCC target triplet||owerpc-apple-d

[Bug c++/27210] [4.2 Regression] ICE on c++ template

2006-05-09 Thread janis at gcc dot gnu dot org
--- Comment #7 from janis at gcc dot gnu dot org 2006-05-09 23:59 --- A regression hunt identified this patch: http://gcc.gnu.org/viewcvs?view=rev&rev=112869 r112869 | mmitchel | 2006-04-11 22:59:57 + (Tue, 11 Apr 2006) -- janis at gcc dot gnu dot org changed:

[Bug target/27266] [4.2 Regression] syncronization primitives cause ICE with -march=pentium or better

2006-05-09 Thread janis at gcc dot gnu dot org
--- Comment #5 from janis at gcc dot gnu dot org 2006-05-09 23:57 --- A regression hunt using an i686-linux cross compiler on powerpc-linux with the testcase attached in comment #1 identified this large merge from gomp-branch: http://gcc.gnu.org/viewcvs?view=rev&rev=108997 r108

[Bug fortran/27304] gfortran: Warn/abort when format in write does not fit passed arguments

2006-05-09 Thread fxcoudert at gcc dot gnu dot org
--- Comment #19 from fxcoudert at gcc dot gnu dot org 2006-05-09 22:10 --- OK, closing as fixed, then. -- fxcoudert at gcc dot gnu dot org changed: What|Removed |Added

[Bug rtl-optimization/27477] The H8 port doesn't build

2006-05-09 Thread kazu at gcc dot gnu dot org
-- kazu at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |kazu at gcc dot gnu dot org |dot org

[Bug c++/27527] New: invalid types produced out of argument deduction (SFINAE bug)

2006-05-09 Thread sebor at roguewave dot com
The program below fails to compile with gcc 4.1.0. According to 14.8.2, p2, template argument deduction must fail if it would result in an invalid type. Bullet 1 in the same paragraph specifically mentions "attempting to create an array with an element type that is void" as one possible reason for

[Bug fortran/20541] TR 15581: ALLOCATABLE components

2006-05-09 Thread tkoenig at gcc dot gnu dot org
--- Comment #8 from tkoenig at gcc dot gnu dot org 2006-05-09 21:27 --- Eric, when you work on this, watch out for the following test case: PROGRAM MAIN TYPE foo INTEGER, DIMENSION(:), ALLOCATABLE :: array END TYPE foo type(foo),pointer,dimension(:) :: mol ALLOCATE (mol(

[Bug libmudflap/27526] New: mudflap mishandles mmap when compiled -D_FILE_OFFSET_BITS=64

2006-05-09 Thread trt at acm dot org
On a SLES9 box, the program below compiles and runs fine when compiled with -fmudflap -lmudflap (annoying redundancy, that). But when compiled with `large files' enabled: -fmudflap -lmudflap -D_FILE_OFFSET_BITS=64 the munmap results in 256 complaints (256*4096 == one megabyte): mudflap violation

[Bug fortran/27304] gfortran: Warn/abort when format in write does not fit passed arguments

2006-05-09 Thread tobias dot burnus at physik dot fu-berlin dot de
--- Comment #18 from tobias dot burnus at physik dot fu-berlin dot de 2006-05-09 20:15 --- Subject: Re: gfortran: Warn/abort when format in write does not fit passed arguments @resolution : FIXED > This looks like you have an old version of the library around, and that it's > used in

[Bug bootstrap/26872] Internal Compiler Error when bootstrap GCC 4.1.0 with GCC 4.0.2

2006-05-09 Thread sje at gcc dot gnu dot org
--- Comment #13 from sje at gcc dot gnu dot org 2006-05-09 20:03 --- Subject: Bug 26872 Author: sje Date: Tue May 9 20:02:29 2006 New Revision: 113662 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=113662 Log: PR bootstrap/26872 * config.gcc (hppa[12]*-*-hpux10*

[Bug bootstrap/26872] Internal Compiler Error when bootstrap GCC 4.1.0 with GCC 4.0.2

2006-05-09 Thread sje at gcc dot gnu dot org
--- Comment #12 from sje at gcc dot gnu dot org 2006-05-09 20:02 --- Subject: Bug 26872 Author: sje Date: Tue May 9 20:00:55 2006 New Revision: 113661 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=113661 Log: PR bootstrap/26872 * config.gcc (hppa[12]*-*-hpux10*

[Bug preprocessor/27525] none of the tokens is a parameter I have given (should give warning?)

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-05-09 19:27 --- No there is no way and should be no way really. This is what debugging is about, fixing your own problems. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added -

[Bug preprocessor/27525] New: none of the tokens is a parameter I have given (should give warning?)

2006-05-09 Thread de_lupus at pandora dot be
#define GCONF_IS_EDITOR_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), GCONF_TYPE_EDITOR_WINDOW)) is it possible to detect a programming error like this? precompiler could detect that klass is nowhere used and give an warning. -- Summary: none of the tokens is a parameter I h

[Bug c++/24561] no static definition at -O0

2006-05-09 Thread hubicka at gcc dot gnu dot org
--- Comment #11 from hubicka at gcc dot gnu dot org 2006-05-09 19:19 --- Fixed in mainline by patch http://gcc.gnu.org/ml/gcc-patches/2006-05/msg00315.html (I got the PR number wrong, sorry). It fixes the functions only, variables still can be optimized out. Do we wish to do the same

[Bug fortran/27524] New: -fbounds-check interracts *strangely* with an array of size 1

2006-05-09 Thread P dot Schaffnit at access dot rwth-aachen dot de
Hi! I've spotted something quite strange with -fbounds-check and an array which happens to have a size of 1 (a quite unlikely configuration admitedly, but could be the tip of s(omething worse, worth investigating I guess). I was able to reproduce this behaviour with a small variation on Paul Thom

[Bug c++/27519] Another's class destructor name

2006-05-09 Thread fang at csl dot cornell dot edu
--- Comment #1 from fang at csl dot cornell dot edu 2006-05-09 18:34 --- With the following reduced case: //->8 snip 8<- class TPoints { public: ~TPoints(); }; class TPoligon: public TPoints { public: ~TPoligon(); }; TPoints::~TPoligon() { } TPoints::~TPoints(){}

[Bug target/27479] TLS accesses use one more instruction than necessary

2006-05-09 Thread dje at gcc dot gnu dot org
--- Comment #4 from dje at gcc dot gnu dot org 2006-05-09 17:20 --- You might be able to combine the address generation with the load in legitimize_reload_address. See the existing code for SYMBOL_REF. -- dje at gcc dot gnu dot org changed: What|Removed

[Bug bootstrap/26545] undeclared 64bit constants in c-common.c

2006-05-09 Thread dje at gcc dot gnu dot org
--- Comment #6 from dje at gcc dot gnu dot org 2006-05-09 17:15 --- patch applied. -- dje at gcc dot gnu dot org changed: What|Removed |Added Status|NEW

[Bug target/27521] internal compiler error: in rs6000_split_multireg_move, at config/rs6000/rs6000.c:10613

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-05-09 17:15 --- Can you attach LectEntUtils2.f ? -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug bootstrap/26545] undeclared 64bit constants in c-common.c

2006-05-09 Thread dje at gcc dot gnu dot org
--- Comment #5 from dje at gcc dot gnu dot org 2006-05-09 17:15 --- Subject: Bug 26545 Author: dje Date: Tue May 9 17:14:56 2006 New Revision: 113660 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=113660 Log: PR target/26545 * config/rs6000/aix41.h (TARGET_64BIT

[Bug target/26541] std lib problems at link time

2006-05-09 Thread dje at gcc dot gnu dot org
--- Comment #4 from dje at gcc dot gnu dot org 2006-05-09 17:12 --- AIX 4.2 does not have enough support for weak symbols to compile C++ shared library correctly. You must use --disable-shared on AIX 4.2. -- dje at gcc dot gnu dot org changed: What|Removed

[Bug bootstrap/26545] undeclared 64bit constants in c-common.c

2006-05-09 Thread dje at gcc dot gnu dot org
--- Comment #4 from dje at gcc dot gnu dot org 2006-05-09 17:09 --- Subject: Bug 26545 Author: dje Date: Tue May 9 17:09:06 2006 New Revision: 113659 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=113659 Log: PR target/26545 * config/rs6000/aix41.h (TARGET_64BIT

[Bug target/27521] internal compiler error: in rs6000_split_multireg_move, at config/rs6000/rs6000.c:10613

2006-05-09 Thread christophe dot gengembre at paris dot ensam dot fr
-- christophe dot gengembre at paris dot ensam dot fr changed: What|Removed |Added Severity|normal |blocker http://gcc.gnu.org/bugzilla/show_bug.cgi

[Bug c++/27493] [4.2 regression] ICE on invalid template parameter

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-05-09 16:36 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCON

[Bug c++/27492] [4.0/4.1/4.2 regression] ICE on invalid covariant return type

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-05-09 16:35 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCON

[Bug fortran/27521] New: internal compiler error: in rs6000_split_multireg_move, at config/rs6000/rs6000.c:10613

2006-05-09 Thread christophe dot gengembre at paris dot ensam dot fr
product : $ g77 -v Reading specs from /usr/local/lib/gcc/powerpc-apple-darwin7.9.0/3.4.4/specs Configured with: ../gcc/configure --enable-threads=posix --enable-languages=f77 Thread model: posix gcc version 3.4.4 command line that triggered the error : g77 -c -w -fno-globals -I. -o ../d-LetO-X/d

[Bug c/27490] [4.1/4.2 regression] ICE on broken sizeof expression

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-05-09 16:15 --- Confirmed. My patch in PR 27489 also fixes this case. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug middle-end/27136] [4.0/4.1 Regression] Compile failure with -O -ffast-math

2006-05-09 Thread rguenth at gcc dot gnu dot org
--- Comment #11 from rguenth at gcc dot gnu dot org 2006-05-09 16:02 --- Fixed. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNE

[Bug middle-end/27136] [4.0/4.1 Regression] Compile failure with -O -ffast-math

2006-05-09 Thread rguenth at gcc dot gnu dot org
--- Comment #10 from rguenth at gcc dot gnu dot org 2006-05-09 16:02 --- Subject: Bug 27136 Author: rguenth Date: Tue May 9 16:01:53 2006 New Revision: 113657 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=113657 Log: 2006-05-09 Richard Guenther <[EMAIL PROTECTED]>

[Bug middle-end/27136] [4.0/4.1 Regression] Compile failure with -O -ffast-math

2006-05-09 Thread rguenth at gcc dot gnu dot org
--- Comment #9 from rguenth at gcc dot gnu dot org 2006-05-09 15:56 --- Subject: Bug 27136 Author: rguenth Date: Tue May 9 15:56:12 2006 New Revision: 113656 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=113656 Log: 2006-05-09 Richard Guenther <[EMAIL PROTECTED]> PR

[Bug c++/27519] New: Another's class destructor name

2006-05-09 Thread zvonsully at gmail dot com
if u have 2 classes defined as: class TPoints { TPoints(const TPoints&); TPoints& operator=(const TPoints&); friend class TPoligon; public: TPoints::TPoints(){} virtual ~TPoints(); }; class TPoligon: public TPoints {

[Bug treelang/27516] install failure due to unconditional invocation of makeinfo for treelang.texi

2006-05-09 Thread aldot at gcc dot gnu dot org
--- Comment #3 from aldot at gcc dot gnu dot org 2006-05-09 15:33 --- (In reply to comment #2) > Created an attachment (id=11419) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11419&action=view) [edit] > Don't build info pages if makeinfo is too old > > Corrected syntax. > With

[Bug rtl-optimization/27335] [4.0/4.1 regression] ICE in get_loop_body

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2006-05-09 15:22 --- Fixed at least on the mainline. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c/27509] wrong warning about an unused variable

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-05-09 15:16 --- Invalid as requested by the reported. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug libstdc++/1773] __cplusplus defined to 1, should be 199711L

2006-05-09 Thread gdr at integrable-solutions dot net
--- Comment #57 from gdr at integrable-solutions dot net 2006-05-09 15:15 --- Subject: Re: __cplusplus defined to 1, should be 199711L "marc dot glisse at normalesup dot org" <[EMAIL PROTECTED]> writes: | (In reply to comment #30) | > Defines __cplusplus to 199711L and overrides it i

[Bug c/27509] wrong warning about an unused variable

2006-05-09 Thread toralf dot foerster at gmx dot de
--- Comment #3 from toralf dot foerster at gmx dot de 2006-05-09 14:52 --- you're right, bug can be closed. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27509

[Bug c++/27508] [4.0/4.1/4.2 regression] ICE on invalid destructor name

2006-05-09 Thread patchapp at dberlin dot org
--- Comment #3 from patchapp at dberlin dot org 2006-05-09 14:51 --- Subject: Bug number PR c++/27508 A patch for this bug has been added to the patch tracker. The mailing list url for the patch is http://gcc.gnu.org/ml/gcc-patches/2006-05/msg00334.html -- http://gcc.gnu.org/bugzil

[Bug c++/27496] ICE on broken templated friend

2006-05-09 Thread patchapp at dberlin dot org
--- Comment #3 from patchapp at dberlin dot org 2006-05-09 14:51 --- Subject: Bug number PR c++/27496 A patch for this bug has been added to the patch tracker. The mailing list url for the patch is http://gcc.gnu.org/ml/gcc-patches/2006-05/msg00333.html -- http://gcc.gnu.org/bugzil

[Bug c++/27315] [4.0/4.1/4.2 regression] ICE with ill-placed expression

2006-05-09 Thread reichelt at gcc dot gnu dot org
--- Comment #5 from reichelt at gcc dot gnu dot org 2006-05-09 14:48 --- Testing a patch. -- reichelt at gcc dot gnu dot org changed: What|Removed |Added Assigne

[Bug tree-optimization/26678] [4.1/4.2 Regression] "GNAT BUG DETECTED" when compiling AWS.

2006-05-09 Thread rguenth at gcc dot gnu dot org
--- Comment #14 from rguenth at gcc dot gnu dot org 2006-05-09 14:34 --- Can someone check, if this is now fixed with the fix for 27409? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26678

[Bug middle-end/27409] [4.1 Regression] ICE in get_constraint_for_component_ref

2006-05-09 Thread rguenth at gcc dot gnu dot org
--- Comment #9 from rguenth at gcc dot gnu dot org 2006-05-09 14:33 --- Fixed. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug middle-end/27409] [4.1 Regression] ICE in get_constraint_for_component_ref

2006-05-09 Thread rguenth at gcc dot gnu dot org
--- Comment #8 from rguenth at gcc dot gnu dot org 2006-05-09 14:33 --- Subject: Bug 27409 Author: rguenth Date: Tue May 9 14:33:26 2006 New Revision: 113652 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=113652 Log: 2006-05-09 Richard Guenther <[EMAIL PROTECTED]> PR

[Bug middle-end/27498] fold does not fold reads from constant static strings

2006-05-09 Thread rguenth at gcc dot gnu dot org
--- Comment #4 from rguenth at gcc dot gnu dot org 2006-05-09 14:25 --- Fixed. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added Status|NEW

[Bug libstdc++/1773] __cplusplus defined to 1, should be 199711L

2006-05-09 Thread marc dot glisse at normalesup dot org
--- Comment #56 from marc dot glisse at normalesup dot org 2006-05-09 14:24 --- (In reply to comment #30) > Defines __cplusplus to 199711L and overrides it in c++config.h for solaris 8 Out of curiosity, why not deal with __cplusplus the same way as __STDC__ (0 for standard headers and

[Bug middle-end/27498] fold does not fold reads from constant static strings

2006-05-09 Thread rguenth at gcc dot gnu dot org
--- Comment #3 from rguenth at gcc dot gnu dot org 2006-05-09 14:16 --- Subject: Bug 27498 Author: rguenth Date: Tue May 9 14:16:50 2006 New Revision: 113651 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=113651 Log: 2006-05-09 Dirk Mueller <[EMAIL PROTECTED]> Richard

[Bug libstdc++/1773] __cplusplus defined to 1, should be 199711L

2006-05-09 Thread marc dot glisse at normalesup dot org
--- Comment #55 from marc dot glisse at normalesup dot org 2006-05-09 13:55 --- A few remarks on (really) defining __cplusplus to 199711L on solaris. One issue I already mentionned in libstdc++/27340 is some conflicts on names like std::__cos. An other issue is the fact that solaris (

[Bug rtl-optimization/22563] [4.0/4.1/4.2 Regression] performance regression for gcc newer than 2.95

2006-05-09 Thread hubicka at gcc dot gnu dot org
--- Comment #13 from hubicka at gcc dot gnu dot org 2006-05-09 11:59 --- The simplified testcase seems to be solved now (on mainline and Athlon): [EMAIL PROTECTED]:/aux/hubicka/gcc/build/gcc$ gcc-2.95 -O3 t.C -march=i686 [EMAIL PROTECTED]:/aux/hubicka/gcc/build/gcc$ ./a.out [EMAIL PRO

internal compiler error: in extract_insn, at recog.c:2083

2006-05-09 Thread vaLsKi
cc -O -pipe -funroll-loops -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/usr/obj/ usr/src/tmp/usr\" -I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/cc_int/. ./cc_tools -I/usr/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/usr/src/gnu/u sr.bin/cc/cc_int/../../../../contrib/gcc -I/us

[Bug fortran/27446] ICE on OpenMP array REDUCTION clause

2006-05-09 Thread jakub at gcc dot gnu dot org
--- Comment #3 from jakub at gcc dot gnu dot org 2006-05-09 10:00 --- The testcase in #2 is unrelated to this, already covered in PR27416. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27446

[Bug other/27513] Add RatFor support

2006-05-09 Thread tobi at gcc dot gnu dot org
--- Comment #3 from tobi at gcc dot gnu dot org 2006-05-09 09:41 --- I don't mind putting it back in, Jim described what needs to be done in PR24357. I don't have a ratfor processor to test with, so I'd prefer if someone else wrote (i.e. copied from gcc < 4.0) and tested the necessary s

[Bug middle-end/27416] ICE on invalid firstprivate/lastprivate

2006-05-09 Thread reichelt at gcc dot gnu dot org
--- Comment #1 from reichelt at gcc dot gnu dot org 2006-05-09 09:25 --- Confirmed. -- reichelt at gcc dot gnu dot org changed: What|Removed |Added CC|

[Bug fortran/27446] ICE on OpenMP array REDUCTION clause

2006-05-09 Thread reichelt at gcc dot gnu dot org
--- Comment #2 from reichelt at gcc dot gnu dot org 2006-05-09 09:11 --- The following testcase crashes even without "-fbounds-check": === subroutine FOO(X) integer, dimension(4), intent(out) :: X !$OMP DO PRIVATE(I), REDUCTION(+:X) do

[Bug rtl-optimization/27335] [4.0/4.1/4.2 regression] ICE in get_loop_body

2006-05-09 Thread rakdver at gcc dot gnu dot org
--- Comment #5 from rakdver at gcc dot gnu dot org 2006-05-09 09:10 --- Subject: Bug 27335 Author: rakdver Date: Tue May 9 09:10:15 2006 New Revision: 113648 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=113648 Log: PR rtl-optimization/27335 * loop-unroll.c (pe

[Bug tree-optimization/27093] [4.2 Regression] verify_ssa failed: definition does not dominate use

2006-05-09 Thread reichelt at gcc dot gnu dot org
--- Comment #12 from reichelt at gcc dot gnu dot org 2006-05-09 08:51 --- *** Bug 26771 has been marked as a duplicate of this bug. *** -- reichelt at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug tree-optimization/26771] [4.2 regression] ICE with -fmudflap

2006-05-09 Thread reichelt at gcc dot gnu dot org
--- Comment #5 from reichelt at gcc dot gnu dot org 2006-05-09 08:51 --- Fixed by Dan's patch for PR27093, so marking as duplicate. *** This bug has been marked as a duplicate of 27093 *** -- reichelt at gcc dot gnu dot org changed: What|Removed

[Bug tree-optimization/26490] [4.2 Regression] ICE in verify_ssa, with structs pointers and globals

2006-05-09 Thread reichelt at gcc dot gnu dot org
--- Comment #8 from reichelt at gcc dot gnu dot org 2006-05-09 08:47 --- Fixed by Dan's patch for PR27093. -- reichelt at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/26909] [4.2 Regression] verify_ssa with aliasing violation with structs

2006-05-09 Thread reichelt at gcc dot gnu dot org
--- Comment #5 from reichelt at gcc dot gnu dot org 2006-05-09 08:42 --- Fixed by Dan's patch for PR27093. -- reichelt at gcc dot gnu dot org changed: What|Removed |Added

dsputil.c:3796: internal compiler error: in extract_insn, at recog.c:2083

2006-05-09 Thread vaLsKi
cc -I../libvo -I../../libvo -I/usr/X11R6/include -fno-PIC -O -pipe -funroll-loops -march=pentium3 -fno-force-addr -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X1

[Bug tree-optimization/27504] x && (x & y) not optimized to x & y

2006-05-09 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2006-05-09 08:36 --- It get's a little complicated as fold gets (xD.1520 != 0) && ((xD.1520 & 85) != 0) from the frontend. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27504

[Bug c/16622] [C99] extern inline is handled wrong in C99 mode

2006-05-09 Thread geoffk at gcc dot gnu dot org
--- Comment #12 from geoffk at gcc dot gnu dot org 2006-05-09 08:20 --- Fix posted as . -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16622

[Bug c/27489] [4.1/4.2 regression] ICE on broken switch condition

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-05-09 08:18 --- This was caused by the new parser doing a little better error recovery (or at least trying to). -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27489

[Bug treelang/27516] install failure due to unconditional invocation of makeinfo for treelang.texi

2006-05-09 Thread aldot at gcc dot gnu dot org
--- Comment #2 from aldot at gcc dot gnu dot org 2006-05-09 08:13 --- Created an attachment (id=11419) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11419&action=view) Don't build info pages if makeinfo is too old Corrected syntax. -- aldot at gcc dot gnu dot org changed:

[Bug c/27489] [4.1/4.2 regression] ICE on broken switch condition

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-05-09 08:11 --- Doing this: Index: c-typeck.c === --- c-typeck.c (revision 113594) +++ c-typeck.c (working copy) @@ -3379,6 +3379,9 @@ build_compound_expr (tree expr1

[Bug c/27489] [4.1/4.2 regression] ICE on broken switch condition

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-05-09 08:03 --- Confirmed. The compound_expr should not have been created as the RHS is an error mark nodes. Fixing that should fix this one without adding a new error mark check this far done. -- pinskia at gcc dot gnu dot or

[Bug bootstrap/27501] [4.2 Regression] Shell compatibility problem

2006-05-09 Thread aldot at gcc dot gnu dot org
--- Comment #3 from aldot at gcc dot gnu dot org 2006-05-09 08:02 --- 2006-05-09 Bernhard Fischer <[EMAIL PROTECTED]> PR/27501 * mkconfig.sh: Use operator '=' for test This patch fixes the build failure on OSF5.1a, please apply. -- http://gcc.gnu.org/bugzilla/sh

[Bug c++/27495] [4.0/4.1/4.2 regression] ICE using "." instead of "->"

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-05-09 08:00 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCON

[Bug treelang/27516] install failure due to unconditional invocation of makeinfo for treelang.texi

2006-05-09 Thread aldot at gcc dot gnu dot org
--- Comment #1 from aldot at gcc dot gnu dot org 2006-05-09 07:58 --- Created an attachment (id=11418) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11418&action=view) check if BUILD_INFO was requested explicitely 2006-05-09 Bernhard Fischer <[EMAIL PROTECTED]> PR/27516

[Bug bootstrap/27516] New: install failure due to unconditional invocation of makeinfo for treelang.texi

2006-05-09 Thread aldot at gcc dot gnu dot org
# uname -a OSF1 tru64.init.at V5.1 1885 alpha # makeinfo --version makeinfo (GNU texinfo) 4.0 Copyright (C) 1999 Free Software Foundation, Inc. There is NO warranty. You may redistribute this software under the terms of the GNU General Public License. For more information about these matters, se

[Bug middle-end/27226] Compiler looses track of alignment for emit_block_move

2006-05-09 Thread rguenth at gcc dot gnu dot org
--- Comment #13 from rguenth at gcc dot gnu dot org 2006-05-09 07:50 --- Created an attachment (id=11417) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11417&action=view) updated patch I updated the patch so it applies to mainline and 4.1 and bootstrapped and regtested it on ia64

[Bug c++/27508] [4.0/4.1/4.2 regression] ICE on invalid destructor name

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-05-09 07:49 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCON

[Bug target/27479] TLS accesses use one more instruction than necessary

2006-05-09 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Severity|normal |enhancement Keywords||missed-op

[Bug middle-end/27512] x86 inline assembler do not keep register assignment if there are several asm() blocks in a statement

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-05-09 07:47 --- This is invalid, there is no usage of tp in the asm so how does GCC know that you are using it. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added -

[Bug middle-end/27498] fold does not fold reads from constant static strings

2006-05-09 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-05-09 07:20 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCON