[Bug ada/34289] Systematic recompilation of up-to-date object files when using the -s gnatmake option GNAT 4.3.0 on x86-*-Darwin8

2007-12-02 Thread sam at gcc dot gnu dot org
--- Comment #6 from sam at gcc dot gnu dot org 2007-12-02 09:17 --- Bechir, could you please add the output of gnatmake -s p.adb -v -cargs -v? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34289

[Bug ada/34289] Systematic recompilation of up-to-date object files when using the -s gnatmake option GNAT 4.3.0 on x86-*-Darwin8

2007-12-02 Thread bechir dot zalila at gmail dot com
--- Comment #7 from bechir dot zalila at gmail dot com 2007-12-02 09:57 --- (In reply to comment #6) Bechir, could you please add the output of gnatmake -s p.adb -v -cargs -v? Here it is: % gnatmake -s p.adb -cargs -v gcc -c -v p.adb Using built-in specs. Target:

[Bug ada/34289] Systematic recompilation of up-to-date object files when using the -s gnatmake option GNAT 4.3.0 on x86-*-Darwin8

2007-12-02 Thread bechir dot zalila at gmail dot com
--- Comment #8 from bechir dot zalila at gmail dot com 2007-12-02 10:00 --- (In reply to comment #7) (In reply to comment #6) Bechir, could you please add the output of gnatmake -s p.adb -v -cargs -v? Here it is: Sorry, forgot the first -v % gnatmake -s p.adb -v -cargs -v

[Bug middle-end/33088] [4.1/4.2/4.3 Regression] spurious exceptions with -ffloat-store

2007-12-02 Thread ebotcazou at gcc dot gnu dot org
--- Comment #7 from ebotcazou at gcc dot gnu dot org 2007-12-02 10:13 --- By Jakub. -- ebotcazou at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/33088] [4.1/4.2/4.3 Regression] spurious exceptions with -ffloat-store

2007-12-02 Thread ebotcazou at gcc dot gnu dot org
--- Comment #8 from ebotcazou at gcc dot gnu dot org 2007-12-02 10:13 --- Investigating. -- ebotcazou at gcc dot gnu dot org changed: What|Removed |Added

[Bug ada/34289] Systematic recompilation of up-to-date object files when using the -s gnatmake option GNAT 4.3.0 on x86-*-Darwin8

2007-12-02 Thread sam at gcc dot gnu dot org
--- Comment #9 from sam at gcc dot gnu dot org 2007-12-02 10:23 --- Ok, the problem here is that -mmacosx-version-min=10.4 should appear *after* -gnatez not to be remembered in the ALI file: COLLECT_GCC_OPTIONS='-mmacosx-version-min=10.4' '-c' '-v' '-gnatez' '-mtune=generic' --

[Bug c++/34314] New: ICE on invalid code (with variadic templates): tree check: expected class ‘type’, have ‘exceptional’ (error_mark) in template_class_depth

2007-12-02 Thread eric dot niebler at gmail dot com
Compile with -std=c++0x templatetypename Fun, typename... Args struct call; templatetypename Fun, typename Arg0 struct call { templatetypename Sig struct result; templatetypename X, typename Y struct resultX(Y) { typedef X type; }; }; -- Summary:

[Bug fortran/34186] dump-parse-tree: ICE for ts-cl-length, if ts-cl == NULL

2007-12-02 Thread burnus at gcc dot gnu dot org
--- Comment #3 from burnus at gcc dot gnu dot org 2007-12-02 14:24 --- Subject: Bug 34186 Author: burnus Date: Sun Dec 2 14:23:48 2007 New Revision: 130569 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=130569 Log: 2007-12-02 Tobias Burnus [EMAIL PROTECTED] PR

[Bug target/34261] Directed rounding doesn't work on MacOS X

2007-12-02 Thread j dot d dot pryce at ntlworld dot com
--- Comment #4 from j dot d dot pryce at ntlworld dot com 2007-12-02 16:17 --- Subject: Re: Directed rounding doesn't work on MacOS X Dear Pinskia - I did not realise that GCC does not provide these libraries. Thank you for explaining. On 30 Nov 2007, at 22:20,

[Bug c++/34273] [4.3 regression] Broken diagnostic: 'tree_binfo' not supported by dump_decl

2007-12-02 Thread pcarlini at suse dot de
-- pcarlini at suse dot de changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |pcarlini at suse dot de |dot org |

[Bug c++/34273] [4.3 regression] Broken diagnostic: 'tree_binfo' not supported by dump_decl

2007-12-02 Thread paolo at gcc dot gnu dot org
--- Comment #1 from paolo at gcc dot gnu dot org 2007-12-02 16:58 --- Subject: Bug 34273 Author: paolo Date: Sun Dec 2 16:58:34 2007 New Revision: 130570 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=130570 Log: /cp 2007-12-02 Paolo Carlini [EMAIL PROTECTED] PR

[Bug c++/34273] [4.3 regression] Broken diagnostic: 'tree_binfo' not supported by dump_decl

2007-12-02 Thread pcarlini at suse dot de
--- Comment #2 from pcarlini at suse dot de 2007-12-02 16:59 --- Fixed. -- pcarlini at suse dot de changed: What|Removed |Added Status|ASSIGNED

[Bug c++/34061] [4.3 regression] ICE with template-template parameters and inheritance

2007-12-02 Thread pcarlini at suse dot de
-- pcarlini at suse dot de changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |pcarlini at suse dot de |dot org |

[Bug libfortran/33985] access=stream,form=unformatted doesn't buffer

2007-12-02 Thread jvdelisle at gcc dot gnu dot org
--- Comment #25 from jvdelisle at gcc dot gnu dot org 2007-12-02 18:45 --- Created an attachment (id=14682) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14682action=view) New patch, clean fix. Answer to comment #18, Thomas, the flush is needed for streamio_12.f90 where we use a

[Bug libfortran/33985] access=stream,form=unformatted doesn't buffer

2007-12-02 Thread jvdelisle at gcc dot gnu dot org
--- Comment #26 from jvdelisle at gcc dot gnu dot org 2007-12-02 18:55 --- With this test case: program main implicit none integer :: i, j open(95,form=unformatted,access=stream) do j=1, 125000 do i=0,255 write(95) int(i,kind=1) end do end do end program main

[Bug libfortran/33985] access=stream,form=unformatted doesn't buffer

2007-12-02 Thread jvdelisle at gcc dot gnu dot org
--- Comment #27 from jvdelisle at gcc dot gnu dot org 2007-12-02 18:57 --- Created an attachment (id=14683) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14683action=view) A sequential read test -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33985

[Bug libfortran/33985] access=stream,form=unformatted doesn't buffer

2007-12-02 Thread jvdelisle at gcc dot gnu dot org
--- Comment #28 from jvdelisle at gcc dot gnu dot org 2007-12-02 18:57 --- Created an attachment (id=14684) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14684action=view) A sequential write test -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33985

[Bug libfortran/33985] access=stream,form=unformatted doesn't buffer

2007-12-02 Thread jvdelisle at gcc dot gnu dot org
--- Comment #29 from jvdelisle at gcc dot gnu dot org 2007-12-02 19:05 --- gfortran 4.3 with patch: $ gfc nwrite.f90 $ time ./a.out real0m0.568s user0m0.533s sys 0m0.035s $ gfc nread.f90 $ time ./a.out real0m0.527s user0m0.508s sys 0m0.019s gfortran 4.2,

[Bug middle-end/31529] [4.3 Regression] ICE in cgraph_expand_function with IMA

2007-12-02 Thread aldot at gcc dot gnu dot org
--- Comment #5 from aldot at gcc dot gnu dot org 2007-12-02 19:35 --- Works: $ cat one.i extern getline(); $ gcc-4.2 -c -o pr.o one.i one.i -combine -fdump-tree-all $ gcc-4.3-HEAD -c -o pr.o one.i one.i -combine -fdump-tree-all 4.3 doesn't seem to see the body? $ cat one.i extern

[Bug libobjc/34315] New: libobjc warnings with Win64 arget=x86_64-pc-mingw32

2007-12-02 Thread nightstrike at gmail dot com
When compiling for a Win64 target of x86_64-pc-mingw32, I receive the following warnings: /tmp/rt/build/gcc-svn/gcc/libobjc/sendmsg.c: In function '__objc_print_dtable_stats': /tmp/rt/build/gcc-svn/gcc/libobjc/sendmsg.c:688: warning: format '%ld' expects type 'long int', but argument 3 has type

[Bug c++/34061] [4.3 regression] ICE with template-template parameters and inheritance

2007-12-02 Thread pcarlini at suse dot de
--- Comment #3 from pcarlini at suse dot de 2007-12-02 19:48 --- Fixed. -- pcarlini at suse dot de changed: What|Removed |Added Status|ASSIGNED

[Bug libobjc/34315] libobjc warnings with Win64 arget=x86_64-pc-mingw32

2007-12-02 Thread nightstrike at gmail dot com
--- Comment #1 from nightstrike at gmail dot com 2007-12-02 19:48 --- Sorry, the copy and paste was cut short. The full warning list is this: /tmp/rt/build/gcc-svn/gcc/libobjc/archive.c: In function 'objc_read_class': /tmp/rt/build/gcc-svn/gcc/libobjc/archive.c:911: warning: cast to

[Bug bootstrap/34316] New: Operand 1 missing mode - x86_64-pc-mingw32

2007-12-02 Thread nightstrike at gmail dot com
When compiling gcc from HEAD for target=x86_64-pc-mingw32, I receive the following warning: ../../gcc/gcc/config/i386/i386.md:19520: warning: operand 1 missing mode? ../../gcc/gcc/config/i386/i386.md:19563: warning: operand 1 missing mode? -- Summary: Operand 1 missing mode -

[Bug c++/34061] [4.3 regression] ICE with template-template parameters and inheritance

2007-12-02 Thread paolo at gcc dot gnu dot org
--- Comment #2 from paolo at gcc dot gnu dot org 2007-12-02 19:47 --- Subject: Bug 34061 Author: paolo Date: Sun Dec 2 19:47:18 2007 New Revision: 130573 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=130573 Log: /cp 2007-12-02 Paolo Carlini [EMAIL PROTECTED] PR

[Bug fortran/34306] misprinting of derived types

2007-12-02 Thread terry at chem dot gu dot se
--- Comment #4 from terry at chem dot gu dot se 2007-12-02 20:20 --- You're outputting an array of point structures. First the first element (a point), then the next, and so on. Why would you expect a different result? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34306

[Bug c++/34050] [4.3 regression] ICE derived classes and variadic templates

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2007-12-02 20:54 --- Mark, this is really only an error recovery regression. Can you relook at the current priority? Thanks, Andrew Pinski t1.cc:4: error: ISO C++ does not include variadic templates t1.cc: In constructor 'BT::B()

[Bug libfortran/33985] access=stream,form=unformatted doesn't buffer

2007-12-02 Thread tkoenig at gcc dot gnu dot org
--- Comment #30 from tkoenig at gcc dot gnu dot org 2007-12-02 20:11 --- (In reply to comment #25) Created an attachment (id=14682) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14682action=view) [edit] New patch, clean fix. Yes, this looks clean and self-contained (and

[Bug fortran/34306] misprinting of derived types

2007-12-02 Thread jvdelisle at gcc dot gnu dot org
--- Comment #5 from jvdelisle at gcc dot gnu dot org 2007-12-02 20:59 --- Closing. -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/34069] [4.3 regression] ICE with invalid specialization of variadic template

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-12-02 20:59 --- Mark, this is really only an error recovery regression. Can you relook at the current priority? Thanks, Andrew Pinski t1.cc:2: error: ISO C++ does not include variadic templates t1.cc:4: error: ISO C++ does not

[Bug fortran/34175] Document when fixed form and when free form source code is assumed

2007-12-02 Thread jvdelisle at gcc dot gnu dot org
--- Comment #3 from jvdelisle at gcc dot gnu dot org 2007-12-02 21:00 --- All done, forgot to close this earlier. -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/33509] [4.3 Regression] tsubst_pack_expansion assumed to return TREE_VEC

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-12-02 21:03 --- Mark, this is really only an error recovery regression. Can you relook at the current priority? Thanks, Andrew Pinski -- pinskia at gcc dot gnu dot org changed: What|Removed

[Bug c++/33964] [4.3 Regression] internal compiler error: in dependent_type_p, at cp/pt.c:15319 (vararg templates)

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-12-02 21:03 --- Mark, this is really only an error recovery regression. Can you relook at the current priority? Thanks, Andrew Pinski -- pinskia at gcc dot gnu dot org changed: What|Removed

[Bug c++/34102] [4.3 regression] ICE with invalid inheritance of variadic templates

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-12-02 21:04 --- Mark, this is really only an error recovery regression. Can you relook at the current priority? Thanks, Andrew Pinski -- pinskia at gcc dot gnu dot org changed: What|Removed

[Bug c++/33943] [4.3 Regression] ICE with partial specialization on vararg template template parameter

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-12-02 21:03 --- Mark, this is really only an error recovery regression. Can you relook at the current priority? Thanks, Andrew Pinski -- pinskia at gcc dot gnu dot org changed: What|Removed

[Bug c++/34052] [4.3 regression] Trouble with variadic templates as template-template parameter

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-12-02 20:58 --- Mark, this is really only an error recovery regression. Can you relook at the current priority? Thanks, Andrew Pinski t1.cc:2: error: ISO C++ does not include variadic templates t1.cc:4: internal compiler error:

[Bug c++/34051] [4.3 regression] ICE in dependent_type_p with variadic templates

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2007-12-02 20:57 --- Mark, this is really only an error recovery regression. Can you relook at the current priority? Thanks, Andrew Pinski t1.cc:7: error: ISO C++ does not include variadic templates t1.cc: In instantiation of

[Bug libfortran/33985] access=stream,form=unformatted doesn't buffer

2007-12-02 Thread jvdelisle at verizon dot net
--- Comment #31 from jvdelisle at verizon dot net 2007-12-02 20:58 --- Subject: Re: access=stream,form=unformatted doesn't buffer tkoenig at gcc dot gnu dot org wrote: Answer to comment #18, Thomas, the flush is needed for streamio_12.f90 where we use a write(10, pos=1) to

[Bug fortran/34230] Expressions of parameters evaluated with too high precision

2007-12-02 Thread jvdelisle at gcc dot gnu dot org
--- Comment #13 from jvdelisle at gcc dot gnu dot org 2007-12-02 21:02 --- Fixed on trunk. Hope everyone is satisfied. -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/34271] [4.3 regression] ICE in invalid initialization of static template member

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-12-02 21:13 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/34051] [4.3 regression] ICE in dependent_type_p with variadic templates

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2007-12-02 21:15 --- (In reply to comment #4) What happens in C++0x mode? The error about variadic templates not being part of ISO C++ would presumably not occur in that mode. Correct but C++0x mode was not in 4.2 so only the normal

[Bug libmudflap/28578] A most simple multithreaded program (practically any multithreaded one) causes mudflap violation

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2007-12-02 21:18 --- Fixed so closing. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/34274] [4.3 regression] Broken diagnostic: 'template_template_parm' not supported by dump_decl

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-12-02 21:19 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug java/20158] gcj fails to compile Apache ant, resulting in Bus error

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2007-12-02 21:20 --- No feedback in way over 3 months so closing as worksforme. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug libfortran/33985] access=stream,form=unformatted doesn't buffer

2007-12-02 Thread tkoenig at gcc dot gnu dot org
--- Comment #32 from tkoenig at gcc dot gnu dot org 2007-12-02 21:20 --- Hi Jerry, the regression-test went fine. I'd say this is OK for commit. Thomas -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33985

[Bug java/16858] Linking of jv-convert fails with redundant pthreads symbols

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2007-12-02 21:20 --- Can you try with 4.1.3 or 4.2.2? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16858

[Bug java/20495] [4.0/4.1/4.2/4.3 Regression] building gcj hangs on gcj-dbtool

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #7 from pinskia at gcc dot gnu dot org 2007-12-02 21:22 --- No feed back in over 3 months so closing as won'tfix. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/31503] gcc exhausts memory when compiling pixie with optimizations

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-12-02 21:23 --- No feedback in over 3 months so closing as invalid. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug bootstrap/31581] targert arm-elf fails to build on Solaris

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-12-02 21:25 --- No feedback in over 3 months so closing as invalid. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/34051] [4.3 regression] ICE in dependent_type_p with variadic templates

2007-12-02 Thread mmitchel at gcc dot gnu dot org
--- Comment #6 from mmitchel at gcc dot gnu dot org 2007-12-02 21:25 --- I disagree. If we bring out a new feature in the compiler, then that new feature should be robust. We do not want to tell users that one of the great new things about GCC 4.3 is C++ 200x support, only to have

[Bug c/31655] errors to compiler

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2007-12-02 21:26 --- No feedback in over 3 months so closing as invalid. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c/32166] Condition check for const char string fails

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2007-12-02 21:32 --- No feedback in over 3 months so closing as worksforme. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug other/32263] Document the required versions of glibc and binutils

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2007-12-02 21:35 --- This is not a bug which GCC can fix really so closing as invalid. GCC can be used with many older glibc. Though sometimes newer GCC can cause older glibc to fail build. -- pinskia at gcc dot gnu dot org

[Bug c++/32768] error compiling openoffice.org-2.0 via FreeBSD ports

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2007-12-02 21:36 --- No feedback in over 3 months so closing as invalid. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

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

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-12-02 21:32 --- No testcase in over 3 months so closing as invalid. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug bootstrap/31583] gcc 4.1.2 fails to build on Solaris for target powerpc-elf

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-12-02 21:24 --- No feedback in over 3 months so closing as worksforme since building a cross to powerpc-elf-sim works for me. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/34051] [4.3 regression] ICE in dependent_type_p with variadic templates

2007-12-02 Thread mmitchel at gcc dot gnu dot org
--- Comment #4 from mmitchel at gcc dot gnu dot org 2007-12-02 21:12 --- What happens in C++0x mode? The error about variadic templates not being part of ISO C++ would presumably not occur in that mode. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34051

[Bug c++/34314] [4.3 Regression] ICE on invalid code (with variadic templates): tree check: expected class ‘type’, have ‘exceptional’ (error_mark) in template_class_depth

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-12-02 21:10 --- Confirmed, this is only an error recovery regression. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/34050] [4.3 regression] ICE derived classes and variadic templates

2007-12-02 Thread mmitchel at gcc dot gnu dot org
-- mmitchel at gcc dot gnu dot org changed: What|Removed |Added Priority|P2 |P4 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34050

[Bug middle-end/31772] Program compilation problem

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2007-12-02 21:28 --- This is fixed for sure on the trunk for 4.3 by removing flow. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/32671] Segment violation

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2007-12-02 21:35 --- No feedback in over 3 months so closing as invalid. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/32728] g++: Internal error: Terminated (program cc1plus)

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-12-02 21:37 --- No feedback in over 3 months so closing as invalid. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug libgcj/33114] jc1 segault building lljava/java/util/AbstractMap.java

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2007-12-02 21:41 --- There are two bugs here, one for the ICE which is an error recovery issue while the other issue is a build issue. The build issue nobody can reproduce while the first one I have seen once before. --

[Bug rtl-optimization/34302] [4.3 regression] Invalid code reordering

2007-12-02 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added CC||pinskia at gcc dot gnu dot |

[Bug middle-end/34317] New: [4.3 Regression] -fno-tree-store-copy-prop causes an ICE

2007-12-02 Thread pinskia at gcc dot gnu dot org
a small empty file will reproduce this bug. Invoke cc1 with -fno-tree-store-copy-prop and you get an ICE: cc1: internal compiler error: in common_handle_option, at opts.c:1786 Please submit a full bug report, with preprocessed source if appropriate. See http://gcc.gnu.org/bugs.html for

[Bug target/33725] Could eliminate argument push for the second const function for same arguments

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-12-02 22:06 --- I don't think this could be done. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33725

[Bug tree-optimization/33649] cc1 segfaults when multiple tree opts disabled

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-12-02 22:04 --- -O2 -fno-tree-ch -fno-tree-copy-prop -fno-tree-dominator-opts -fno-tree-vrp is enough to reproduce this issue with 2906-1.c -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33649

[Bug middle-end/34317] [4.3 Regression] -fno-tree-store-copy-prop causes an ICE

2007-12-02 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Summary|[4.3 Regression] -fno-tree- |[4.3 Regression] -fno-tree- |store-copy-prop

[Bug bootstrap/33130] Configuration error prevents build

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2007-12-02 21:43 --- No feedback in 3 months so closing as worksforme. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/33183] compiler error: Segmentation fault: 11

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-12-02 21:42 --- No feedback in over 3 months so closing as invalid. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/33937] static variables destruction results in a segmentation fault (Coredumps)

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-12-02 22:25 --- Can you provide a testcase? -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/33972] Cannot declare operator() using function typedef

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-12-02 22:26 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/33979] support for char16_t, char32_t

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-12-02 22:26 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c/34235] short variable cast to unsigned int fails to right shift as unsigned

2007-12-02 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Severity|major |normal http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34235

[Bug libstdc++/33935] overloads in C headers

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-12-02 22:25 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/33750] initialization of non-integral member constant not rejected

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #12 from pinskia at gcc dot gnu dot org 2007-12-02 22:11 --- *** This bug has been marked as a duplicate of 11393 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/33858] Spurious warning with anonymous namespace and anonymous types

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-12-02 22:24 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/33944] streaming 64-bit integer stores

2007-12-02 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Severity|normal |enhancement http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33944

[Bug ada/33889] Inefficient code expansion for extended return statement

2007-12-02 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Severity|normal |enhancement Keywords|

[Bug c++/11393] Initializer of static const float class member is not legal in c++98

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #17 from pinskia at gcc dot gnu dot org 2007-12-02 22:11 --- *** Bug 33750 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug libstdc++/33903] Backtrace info in std::exception

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2007-12-02 22:27 --- Not really a good request as GCC support for this is hard and non standard. You can do it yourself as shown below. -- pinskia at gcc dot gnu dot org changed: What|Removed

[Bug libfortran/33985] access=stream,form=unformatted doesn't buffer

2007-12-02 Thread jvdelisle at gcc dot gnu dot org
--- Comment #33 from jvdelisle at gcc dot gnu dot org 2007-12-02 23:17 --- Subject: Bug 33985 Author: jvdelisle Date: Sun Dec 2 23:17:16 2007 New Revision: 130574 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=130574 Log: 2007-12-02 Jerry DeLisle [EMAIL PROTECTED]

[Bug fortran/34318] New: Modules: Infinity/NaN parameters read as 0.0

2007-12-02 Thread burnus at gcc dot gnu dot org
Split off of PR 34230. Compile the following with -fno-range-check: module except real, parameter :: inf = 1./0., nan = 0./0. end module program a use except print *, inf, nan end program a This prints: 0.000 0.000 The .mod shows: (CONSTANT (REAL 4

[Bug tree-optimization/33860] [4.3 Regression] ICE in vectorizable_load, at tree-vect-transform.c:5503

2007-12-02 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.3.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33860

[Bug fortran/34319] New: I/O: Support NaN, Infinity and INF as input

2007-12-02 Thread burnus at gcc dot gnu dot org
Split off of PR 34230. With Fortran 2003 supporting IEEE, gfortran should also support (case insensitve) the followinging strings: +NaN/-NAN/NAN, [+/-]Infinity/INF. NAG f95, g95, ifort and sunf95 support it. (And reject, e.g., Infi.) While openf95, gfortran and g77 reject it. --

[Bug tree-optimization/33866] [4.3 Regression] ICE in vect_get_vec_def_for_stmt_copy, at tree-vect-transform.c:1937

2007-12-02 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.3.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33866

[Bug libfortran/33985] access=stream,form=unformatted doesn't buffer

2007-12-02 Thread jvdelisle at gcc dot gnu dot org
--- Comment #34 from jvdelisle at gcc dot gnu dot org 2007-12-02 23:32 --- Lets close this and see what happens. (Jerry crosses his fingers) :) -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/34299] [avr] ICE on function attribute syntax for main()

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-12-02 23:34 --- Can you attach the preprocessed source? -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/33804] ICE in vect_transform_stmt, at tree-vect-transform.c:6131 with -ftree-vectorize

2007-12-02 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.3.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33804

[Bug tree-optimization/33237] [4.3 Regression] Tree memory partitioning is spending 430 seconds of a 490 second compile.

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2007-12-02 23:46 --- Any news on this bug? -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/33301] wrong vectorization factor due to an invariant type-promotion in the loop

2007-12-02 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.3.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33301

[Bug other/34224] Problem compiling gcc 4.2.2

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-12-02 23:50 --- /usr/include/bits/sigthread.h:36: error: storage class specified for parameter This sounds like a bug in glibc headers. Can you provide the preprocessed source? -- pinskia at gcc dot gnu dot org changed:

[Bug rtl-optimization/34249] FAIL: gcc.dg/tree-prof/bb-reorg.c compilation, -fprofile-use -D_PROFILE_USE

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2007-12-02 23:52 --- This testcase never worked. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/31081] [4.3 Regression] Inliner messes up SSA for abnormals

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #9 from pinskia at gcc dot gnu dot org 2007-12-03 02:44 --- From PR 30604: OK, new investigation show that using the smaller testcase firebird2-nav.cc shows the inliner is misbehaving. before inlining (*041t.profile): # BLOCK 2 freq:1 # PRED: ENTRY [100.0%]

[Bug target/28132] [4.1 Regression] ICE instantiate_virtual_regs_in_insn when -fforce-addr -O1 used

2007-12-02 Thread mark at halcy0n dot com
--- Comment #7 from mark at halcy0n dot com 2007-12-03 02:49 --- r125879 | jakub | 2007-06-20 02:50:23 -0400 (Wed, 20 Jun 2007) | 6 lines PR middle-end/32285 * calls.c (precompute_arguments): Also precompute CALL_EXPR arguments if ACCUMULATE_OUTGOING_ARGS.

[Bug c++/34229] error on correct code

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #7 from pinskia at gcc dot gnu dot org 2007-12-03 03:15 --- *** This bug has been marked as a duplicate of 34238 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/34238] [4.3 regression] static data member used, but not defined error on member definition

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #7 from pinskia at gcc dot gnu dot org 2007-12-03 03:15 --- *** Bug 34229 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/34212] spurious warning: value computed is not used

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2007-12-03 03:17 --- Mine, but this will not get in until around the 25th. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/34196] [4.3 Regression] uninitialized variable warning in dead exception region

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-12-03 03:33 --- This looks like a front-end/gimplifier bug. So we have: allocator::allocator(); try { char* a = s-c_str(); t = string::string(a); try { b = wtx- unserialise (t); wt = AutoPtr::AutoPtr (b); } finnally

[Bug target/34077] GCC -O1 -minline-all-stringops -minline-stringops-dynamically fails for spec 2006 bzip2, gobmk, and h264ref benchmarks

2007-12-02 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2007-12-03 03:37 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|NEW

[Bug middle-end/33699] regression, missing optimization on const addr area store

2007-12-02 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Severity|normal |enhancement http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33699

  1   2   >