[Bug c++/26938] [4.0/4.1/4.2 regression] ICE with wrong number of template parameters

2006-07-16 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-07-16 08:31 --- Another testcase which I ran into while reducing the bootstrap failure: template class basic_istream; template struct basic_istream { ~basic_istream(){} }; class istrstream : public basic_istream { ~istrstrea

[Bug c/28393] New: gcc gives a core dump when compiling a C program, cc works fine.

2006-07-16 Thread mohamed_selim at mentor dot com
I need to build on linux but I get a segmentation fault (core dump) so I try on Sun and I get the same behavior but cc works fine. GCC version: Reading specs from ../lib/gcc-lib/i686-pc-linux-gnu/3.2.3/specs Configured with: ./configure --prefix=/free/GNU_BUILD/G1/devenv/distrib/i686/2.4.7-10/gcc

[Bug c/28393] gcc gives a core dump when compiling a C program, cc works fine.

2006-07-16 Thread mohamed_selim at mentor dot com
--- Comment #1 from mohamed_selim at mentor dot com 2006-07-16 09:34 --- Created an attachment (id=11895) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11895&action=view) file that whn compiled gives the crash. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28393

[Bug c/28393] gcc gives a core dump when compiling a C program, cc works fine.

2006-07-16 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-07-16 09:38 --- In a way that struct is big, I bet the compiler is really just running out of stack space. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28393

[Bug c/28393] gcc gives a core dump when compiling a C program, cc works fine.

2006-07-16 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-07-16 09:40 --- I also think most of the stack space issues have been fixed for 3.3, 3.4, 4.0, and 4.1. You might should try a 4.1.1 compiler as 3.2.x (and 3.x) are no longer being maintained. -- http://gcc.gnu.org/bugzilla/sh

[Bug c/28393] gcc gives a core dump when compiling a C program, cc works fine.

2006-07-16 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-07-16 09:41 --- Also this works for me with 4.0.2 and 3.3. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added --

[Bug c/28393] gcc gives a core dump when compiling a C program, cc works fine.

2006-07-16 Thread mohamed_selim at mentor dot com
--- Comment #5 from mohamed_selim at mentor dot com 2006-07-16 09:42 --- Subject: RE: gcc gives a core dump when compiling a C program, cc works fine. Is there any option to increase this stack size? -Original Message- From: pinskia at gcc dot gnu dot org [mailto:[EMAIL PROT

[Bug c/28393] gcc gives a core dump when compiling a C program, cc works fine.

2006-07-16 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2006-07-16 09:45 --- (In reply to comment #5) > Subject: RE: gcc gives a core dump when compiling a C program, cc works fine. > > Is there any option to increase this stack size? That is an offtopic question really but using limit or

[Bug ada/28394] New: Ambiguous call not detected when using dotted notation

2006-07-16 Thread kafka dot fr at laposte dot net
See attached code example. When using dotted notation to call Setup() (as in first line in Test procedure), the compiler doesn't say anything, the Setup() procedure actually called is the one from the package Pkg. When using traditional notation (as in second line in Test procedure), the compiler

[Bug ada/28394] Ambiguous call not detected when using dotted notation

2006-07-16 Thread kafka dot fr at laposte dot net
--- Comment #1 from kafka dot fr at laposte dot net 2006-07-16 09:55 --- Created an attachment (id=11896) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11896&action=view) Source files to illustrate the bug -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28394

[Bug fortran/27980] [4.1 only] Wrong allocation for zero-sized function result

2006-07-16 Thread tkoenig at gcc dot gnu dot org
--- Comment #7 from tkoenig at gcc dot gnu dot org 2006-07-16 10:12 --- Subject: Bug 27980 Author: tkoenig Date: Sun Jul 16 10:11:57 2006 New Revision: 115496 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115496 Log: 2006-07-16 Thomas Koenig <[EMAIL PROTECTED]> PR fo

[Bug fortran/27980] [4.1 only] Wrong allocation for zero-sized function result

2006-07-16 Thread tkoenig at gcc dot gnu dot org
--- Comment #8 from tkoenig at gcc dot gnu dot org 2006-07-16 10:12 --- Fixed on mainline and 4.1. Closing. -- tkoenig at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/20643] [4.0/4.1/4.2 Regression] Tree loop optimizer does worse job than RTL loop optimizer

2006-07-16 Thread anemo at mba dot ocn dot ne dot jp
--- Comment #11 from anemo at mba dot ocn dot ne dot jp 2006-07-16 13:21 --- I have a similer optimization problem with this tiny function. void foo(int *a) { int i; for (i = 0; i < 100; i++) a[0] += a[1]; } All gcc 4.x I tried generate load and store i

[Bug tree-optimization/20643] [4.0/4.1/4.2 Regression] Tree loop optimizer does worse job than RTL loop optimizer

2006-07-16 Thread steven at gcc dot gnu dot org
--- Comment #12 from steven at gcc dot gnu dot org 2006-07-16 13:52 --- The test case in comment #11 looks like a classic store motion opportunity to me. GCC 3.3 performs the store motion, GCC 4.2 r115467 does not. Zdenek, I thought tree-ssa-lim should be able to do store motion in loo

[Bug tree-optimization/18842] Weak optimization on global references

2006-07-16 Thread felix dot nawothnig at t-online dot de
--- Comment #8 from felix dot nawothnig at t-online dot de 2006-07-16 14:23 --- Don't know much about GCC internals but shouldn't this be a very trivial enhancement? I know that this is FOSS so not to annoy anyone, just wondering why it's still open after >1 year. (In case someone is w

[Bug fortran/28201] gfortran ICE if argument list does not match generic interface

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-07-16 15:02 --- Subject: Bug 28201 Author: pault Date: Sun Jul 16 15:01:59 2006 New Revision: 115499 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115499 Log: 2006-07-16 Paul Thomas <[EMAIL PROTECTED]> PR fortran/

[Bug fortran/20844] ADVANCE=specifier in output statement

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #3 from pault at gcc dot gnu dot org 2006-07-16 15:02 --- Subject: Bug 20844 Author: pault Date: Sun Jul 16 15:01:59 2006 New Revision: 115499 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115499 Log: 2006-07-16 Paul Thomas <[EMAIL PROTECTED]> PR fortran/

[Bug fortran/20893] unconditional use of optional argument not detected

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-07-16 15:02 --- Subject: Bug 20893 Author: pault Date: Sun Jul 16 15:01:59 2006 New Revision: 115499 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115499 Log: 2006-07-16 Paul Thomas <[EMAIL PROTECTED]> PR fortran/

[Bug fortran/28384] ICE on non-existent COMMON block

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #2 from pault at gcc dot gnu dot org 2006-07-16 15:02 --- Subject: Bug 28384 Author: pault Date: Sun Jul 16 15:01:59 2006 New Revision: 115499 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115499 Log: 2006-07-16 Paul Thomas <[EMAIL PROTECTED]> PR fortran/

[Bug libstdc++/28277] __builtin_alloca with no limit in libstdc++

2006-07-16 Thread paolo at gcc dot gnu dot org
--- Comment #10 from paolo at gcc dot gnu dot org 2006-07-16 15:39 --- Subject: Bug 28277 Author: paolo Date: Sun Jul 16 15:38:59 2006 New Revision: 115501 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115501 Log: 2006-07-16 Paolo Carlini <[EMAIL PROTECTED]> PR libst

[Bug c/28395] New: Improved division-by-constant code

2006-07-16 Thread vda dot linux at googlemail dot com
32-bit unsigned division A/B by compile-time constant B can be optimized by replacing it with multiplication and shift right. For example, division by 10 is done like this: (A*3435973837) >> 35, in i386 asm: movl$-858993459, %ecx movl8(%ebp), %eax mull%ecx

[Bug c/28395] Improved division-by-constant code

2006-07-16 Thread vda dot linux at googlemail dot com
--- Comment #1 from vda dot linux at googlemail dot com 2006-07-16 15:45 --- Created an attachment (id=11898) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11898&action=view) find_fast_div.c -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28395

[Bug c/28395] Improved division-by-constant code

2006-07-16 Thread vda dot linux at googlemail dot com
--- Comment #2 from vda dot linux at googlemail dot com 2006-07-16 15:46 --- Created an attachment (id=11899) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11899&action=view) fast_div_bench.c -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28395

[Bug c/28395] Improved division-by-constant code

2006-07-16 Thread vda dot linux at googlemail dot com
--- Comment #3 from vda dot linux at googlemail dot com 2006-07-16 15:46 --- Created an attachment (id=11900) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11900&action=view) find_fast_div_random.c -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28395

[Bug middle-end/28395] Improved division-by-constant code

2006-07-16 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-07-16 15:50 --- GCC already does something like this. For /10, GCC produces: f: movl$-858993459, %eax mull4(%esp) shrl$3, %edx movl%edx, %eax ret Maybe I don't understand what

[Bug middle-end/28395] Improved division-by-constant code

2006-07-16 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2006-07-16 15:52 --- In fact we do it also for signed integers (PPC asm this time): _f: lis r0,0x srawi r2,r3,31 ori r0,r0,26215 mulhw r3,r3,r0 srawi r3,r3,2 subf r3,r2,r3 blr

[Bug middle-end/28395] Improved division-by-constant code

2006-07-16 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2006-07-16 15:54 --- This has been done in GCC since at least 1994 revision 7598 in the SVN. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28395

[Bug middle-end/28395] Improved division-by-constant code

2006-07-16 Thread vda dot linux at googlemail dot com
--- Comment #7 from vda dot linux at googlemail dot com 2006-07-16 16:22 --- Oh my. It looks that use of -Os played a joke on me. gcc 3.4.3 -Os uses a division instruction, even though it results in slower and _also bigger_ code. Maybe it makes sense to enable this optimization for -O

[Bug middle-end/28395] Improved division-by-constant code

2006-07-16 Thread steven at gcc dot gnu dot org
--- Comment #8 from steven at gcc dot gnu dot org 2006-07-16 16:51 --- No. At -Os, we care about smaller code. Unless that sequence of insns with muls and shifts is smaller than a div, we should produce the div at -Os. And as far as I can see, the div will always be smaller. Not a bug

[Bug fortran/20844] ADVANCE=specifier in output statement

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-07-16 17:17 --- Subject: Bug 20844 Author: pault Date: Sun Jul 16 17:17:04 2006 New Revision: 115502 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115502 Log: 2006-07-16 Paul Thomas <[EMAIL PROTECTED]> PR fortran/

[Bug fortran/28384] ICE on non-existent COMMON block

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #3 from pault at gcc dot gnu dot org 2006-07-16 17:17 --- Subject: Bug 28384 Author: pault Date: Sun Jul 16 17:17:04 2006 New Revision: 115502 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115502 Log: 2006-07-16 Paul Thomas <[EMAIL PROTECTED]> PR fortran/

[Bug fortran/28353] ICE: Segmentation fault

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #7 from pault at gcc dot gnu dot org 2006-07-16 17:17 --- Subject: Bug 28353 Author: pault Date: Sun Jul 16 17:17:04 2006 New Revision: 115502 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115502 Log: 2006-07-16 Paul Thomas <[EMAIL PROTECTED]> PR fortran/

[Bug fortran/28201] gfortran ICE if argument list does not match generic interface

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #5 from pault at gcc dot gnu dot org 2006-07-16 17:17 --- Subject: Bug 28201 Author: pault Date: Sun Jul 16 17:17:04 2006 New Revision: 115502 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115502 Log: 2006-07-16 Paul Thomas <[EMAIL PROTECTED]> PR fortran/

[Bug fortran/20903] types shouldn't propagate into interfaces

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #8 from pault at gcc dot gnu dot org 2006-07-16 17:17 --- Subject: Bug 20903 Author: pault Date: Sun Jul 16 17:17:04 2006 New Revision: 115502 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115502 Log: 2006-07-16 Paul Thomas <[EMAIL PROTECTED]> PR fortran/

[Bug fortran/25097] Component of optional argument allowed as arg. to PRESENT

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #5 from pault at gcc dot gnu dot org 2006-07-16 17:17 --- Subject: Bug 25097 Author: pault Date: Sun Jul 16 17:17:04 2006 New Revision: 115502 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115502 Log: 2006-07-16 Paul Thomas <[EMAIL PROTECTED]> PR fortran/

[Bug fortran/20893] unconditional use of optional argument not detected

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #5 from pault at gcc dot gnu dot org 2006-07-16 17:17 --- Subject: Bug 20893 Author: pault Date: Sun Jul 16 17:17:04 2006 New Revision: 115502 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115502 Log: 2006-07-16 Paul Thomas <[EMAIL PROTECTED]> PR fortran/

[Bug fortran/28384] ICE on non-existent COMMON block

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #4 from pault at gcc dot gnu dot org 2006-07-16 17:18 --- Fixed on trunk and 4.2 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/20844] ADVANCE=specifier in output statement

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #5 from pault at gcc dot gnu dot org 2006-07-16 17:18 --- Fixed on trunk and 4.2 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/28201] gfortran ICE if argument list does not match generic interface

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #6 from pault at gcc dot gnu dot org 2006-07-16 17:19 --- Fixed on trunk and 4.2 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/20893] unconditional use of optional argument not detected

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #6 from pault at gcc dot gnu dot org 2006-07-16 17:20 --- Fixed on trunk and 4.2 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/28353] ICE: Segmentation fault

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #8 from pault at gcc dot gnu dot org 2006-07-16 17:20 --- Fixed on trunk and 4.2 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/25097] Component of optional argument allowed as arg. to PRESENT

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #6 from pault at gcc dot gnu dot org 2006-07-16 17:21 --- Fixed on trunk and 4.2 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/20903] types shouldn't propagate into interfaces

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #9 from pault at gcc dot gnu dot org 2006-07-16 17:22 --- Fixed on trunk and 4.2 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/20878] Interface body cannot access named entities by host association

2006-07-16 Thread pault at gcc dot gnu dot org
--- Comment #3 from pault at gcc dot gnu dot org 2006-07-16 17:24 --- Fixed on trunk and 4.2 Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/28395] Improved division-by-constant code

2006-07-16 Thread vda dot linux at googlemail dot com
--- Comment #9 from vda dot linux at googlemail dot com 2006-07-16 18:47 --- The test program below shows that in this case doing division with div insn takes more instructions than with mul+shift. Also mul+shift path has absolutely useless "movl %edx, %eax" insn, shaving that will mak

[Bug middle-end/28395] Improved division-by-constant code

2006-07-16 Thread vda dot linux at googlemail dot com
--- Comment #10 from vda dot linux at googlemail dot com 2006-07-16 18:54 --- gcc-4.1.1 differs only by insterting one more useless insn: movl$-858993459, %eax mull8(%esp) movl%edx, %eax + xorl%edx, %edx shrl$3, %eax mov

[Bug c++/28370] [4.2 Regression] undefined reference to template class static variable in an anonymous namespace

2006-07-16 Thread jakub at gcc dot gnu dot org
--- Comment #11 from jakub at gcc dot gnu dot org 2006-07-16 20:17 --- Subject: Bug 28370 Author: jakub Date: Sun Jul 16 20:17:20 2006 New Revision: 115503 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115503 Log: PR c++/28370 * decl2.c (note_vague_linkage_var):

[Bug fortran/28390] Broken !$omp parallel do lastprivate(iterationvar)

2006-07-16 Thread jakub at gcc dot gnu dot org
--- Comment #1 from jakub at gcc dot gnu dot org 2006-07-16 20:19 --- Subject: Bug 28390 Author: jakub Date: Sun Jul 16 20:19:27 2006 New Revision: 115504 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=115504 Log: PR fortran/28390 * trans-openmp.c (gfc_trans_omp_

[Bug tree-optimization/28210] ICE in is_gimple_min_invariant at -O1.

2006-07-16 Thread pluto at agmk dot net
--- Comment #3 from pluto at agmk dot net 2006-07-16 20:27 --- it works for me with 4.1.2 revision 115366. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28210

[Bug tree-optimization/18842] Weak optimization on global references

2006-07-16 Thread rguenth at gcc dot gnu dot org
--- Comment #9 from rguenth at gcc dot gnu dot org 2006-07-16 20:36 --- You could try it yourself. But - do you have a testcase that shows how macros and inline functions come into play here? -- rguenth at gcc dot gnu dot org changed: What|Removed

[Bug fortran/28397] New: Check format mismatches at compile time

2006-07-16 Thread tkoenig at gcc dot gnu dot org
: Expected REAL for item 2 in formatted transfer, got INTEGER (F10.4) ^ $ gfortran -v Using built-in specs. Target: i686-pc-linux-gnu Configured with: ../../gcc/trunk/configure --prefix=/home/ig25 --enable-languages=c,fortran Thread model: posix gcc version 4.2.0 20060716 (experimental) --

[Bug java/28398] New: error messages lack substitutions

2006-07-16 Thread bim2006 at basistech dot com
The following sort of garbaged error messaged with accented latin characters in the place where some string was supposed to be substituted into place are chronic with gcj 4.1.1. gcj -fjni -o gcj_test ../java/src/com/basistech/ne/batch/Extractor.java ../java/src/com/basistech/ne/batch/jni.java Tes

[Bug fortran/28399] New: Implement ftnchek-like warnings

2006-07-16 Thread tkoenig at gcc dot gnu dot org
There are some useful warnings that gfortran could issue. Examples: $ cat chk.f program main double precision a real b b = 2.3**(2/3) a = 4.3*1d5 print *,a,b b = 1.23456789012345 print *,4**(-3) end $ ftnchek chk.f FTNCHEK Version 3.3 November

[Bug java/28398] error messages lack substitutions

2006-07-16 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-07-16 22:13 --- รข Actually I think it is because your environment variables said your terminal supports UTF-8 but they really don't. Can you try setting LANG to C and try again? -- pinskia at gcc dot gnu dot org changed:

[Bug c++/28370] [4.2 Regression] undefined reference to template class static variable in an anonymous namespace

2006-07-16 Thread pinskia at gcc dot gnu dot org
--- Comment #12 from pinskia at gcc dot gnu dot org 2006-07-16 22:24 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNE

[Bug fortran/28390] Broken !$omp parallel do lastprivate(iterationvar)

2006-07-16 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-07-16 22:24 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRM

[Bug java/28398] error messages lack substitutions

2006-07-16 Thread bim2006 at basistech dot com
--- Comment #2 from bim2006 at basistech dot com 2006-07-16 22:29 --- Oh, of course. I should have thought of that. -- bim2006 at basistech dot com changed: What|Removed |Added ---

[Bug target/24036] [e500] ICE in subreg_offset_representable_p, at rtlanal.c:3143

2006-07-16 Thread dje at gcc dot gnu dot org
--- Comment #4 from dje at gcc dot gnu dot org 2006-07-17 01:43 --- Double Complex on e500 with double GPRs fundamentally does not interact well with GCC's current design. GCC does not want to have a double placed in the same register that can contain an int if the width of the register

[Bug target/24036] [e500] ICE in subreg_offset_representable_p, at rtlanal.c:3143

2006-07-16 Thread dje at gcc dot gnu dot org
--- Comment #5 from dje at gcc dot gnu dot org 2006-07-17 02:05 --- Created an attachment (id=11902) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11902&action=view) consistently calculate nregs for FLOAT_MODES -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24036

[Bug middle-end/28010] [4.1/4.2 regression] ICE because of fold_rtx endless recursion

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P1 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28010

[Bug c++/28025] [4.1/4.2 Regression] multiple template friend compile error

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P1 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28025

[Bug c++/28031] [4.2 regression] bogus jump to case label crosses initialization error with C99 anonymous initializers

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P1 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28031

[Bug c++/28048] [4.0/4.1/4.2 Regression] ICE on accessing member of dependent name

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P1 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28048

[Bug objc/28049] [4.1/4.2 regression] ICE on single + or -

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28049

[Bug objc/28050] [4.1/4.2 regression] ICE on invalid initializer

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28050

[Bug c++/28053] [4.2 regression] ICE deriving from class with invalid bitfield

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28053

[Bug c++/28056] [4.1/4.2 regression] enum accepted as scope

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28056

[Bug c++/28058] [4.1/4.2 regression] ICE in inline_forbidden_p

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28058

[Bug debug/28063] [4.2 regression] Dwarf no longer uses merged strings for DW_AT_comp_dir

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28063

[Bug rtl-optimization/28071] [4.1/4.2 regression] A file that can not be compiled in reasonable time/space

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28071

[Bug target/28102] [4.2 Regression] GNU Hurd bootstrap error: 'OPTION_GLIBC' undeclared

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28102

[Bug c++/28113] [4.2 Regression] vectors initialized in ctors, not at compile time, cause altivec-3.C failure

2006-07-16 Thread mmitchel at gcc dot gnu dot org
--- Comment #6 from mmitchel at gcc dot gnu dot org 2006-07-17 02:49 --- Janis -- IIUC, you checked in a fix for this issue. Or, do you want to keep the issue open even though the patch has gone in? If so, would you please retitle the issue and indicate what the current purpose of th

[Bug c/28136] [4.0/4.1/4.2 regression] ICE with incomplete array type

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28136

[Bug c++/28148] [4.0/4.1/4.2 Regression] ICE with pointer to member function initializer and cast to a different type

2006-07-16 Thread mmitchel at gcc dot gnu dot org
--- Comment #5 from mmitchel at gcc dot gnu dot org 2006-07-17 02:52 --- This code is not valid ISO C++; there is no conversion from function pointers (including pointers to member functions) from one type to another. -- mmitchel at gcc dot gnu dot org changed: What|

[Bug target/28181] [4.0/4.1/4.2 regression] ICE in reload_cse_simplify_operands, at postreload.c:393 on m68k

2006-07-16 Thread mmitchel at gcc dot gnu dot org
--- Comment #7 from mmitchel at gcc dot gnu dot org 2006-07-17 02:53 --- m68k is not a primary or secondary platform. -- mmitchel at gcc dot gnu dot org changed: What|Removed |Added -

[Bug c++/28025] [4.1/4.2 Regression] multiple template friend compile error

2006-07-16 Thread fang at csl dot cornell dot edu
--- Comment #2 from fang at csl dot cornell dot edu 2006-07-17 02:56 --- known to work: 4.0.1 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28025

[Bug c++/28182] [4.0/4.1/4.2 Regression] Bad behaviour when missing "typename" keyword.

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28182

[Bug libgcj/28189] [4.1/4.2 Regression] Many libjava execution tests time out on Tru64 UNIX

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28189

[Bug libgcj/28190] [4.2 Regression] libjava bootstrap failure on IRIX 6.5: stdint.h misdetection

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28190

[Bug middle-end/28216] [4.1/4.2 regression] mangled warning message

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P5 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28216

[Bug c++/28225] [4.0/4.1/4.2 regression] segfault in type_dependent_expression_p

2006-07-16 Thread mmitchel at gcc dot gnu dot org
--- Comment #4 from mmitchel at gcc dot gnu dot org 2006-07-17 03:00 --- I don't think this code is invalid. To instantiate operator(), size_traits would have to be complete, but that should not prevent the template declaration. -- mmitchel at gcc dot gnu dot org changed:

[Bug c++/28235] [4.0/4.1/4.2 Regression] ICE with static const member as default parameter in template

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P1 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28235

[Bug tree-optimization/28238] [4.1/4.2 regression] verify_stmts failed (invalid operand to unary operator)

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P1 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28238

[Bug c++/28239] [4.2 regression] ICE in gimple_add_tmp_var, at gimplify.c:720

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28239

[Bug target/28247] [4.1/4.2 regression] libstdc++ cannot be build with Solaris threads

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P1 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28247

[Bug c++/28248] [4.1/4.2 regression] Trouble with invalid initializers

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28248

[Bug c++/28250] [4.2 regression] ICE with invalid catch

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28250

[Bug c++/28253] [4.0/4.1/4.2 regression] ICE with invalid covariant return

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28253

[Bug c++/28255] [4.1/4.2 regression] ICE with initialization in template

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28255

[Bug c++/28256] [4.1/4.2 regression] ICE with empty initializer

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28256

[Bug c++/28257] [4.0/4.1/4.2 regression] ICE with invalid variable declaration

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28257

[Bug c++/28258] [4.0/4.1/4.2 regression] ICE with invalid constructor

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28258

[Bug c++/28259] [4.0/4.1/4.2 regression] ICE with invalid virtual inheritance

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28259

[Bug c++/28261] [4.0/4.1/4.2 regression] ICE with enum in constructor definition

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28261

[Bug c++/28266] [4.0/4.1/4.2 regression] ICE on invalid default variable

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28266

[Bug c++/28267] [4.0/4.1/4.2 regression] ICE on invalid default variable in operator new

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28267

[Bug target/28270] [4.0/4.1/4.2 regression] ICE on invalid inline asm

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28270

[Bug c++/28274] [4.1/4.2 Regression] Redeclaration with extra default argument doesn't work

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P1 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28274

[Bug c/28280] [4.2 regression] bogus "statement with no effect" warning with VLA and typeof

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28280

[Bug c++/28284] [4.2 regression] ICE with invalid static const variable

2006-07-16 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P3 |P4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28284

  1   2   >