[Bug middle-end/24804] [3.4 Regression] Produces wrong code

2005-12-01 Thread gdr at gcc dot gnu dot org
--- Comment #8 from gdr at gcc dot gnu dot org 2005-12-01 08:33 --- Moved to 3.4.6 -- gdr at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|3.4.5

[Bug web/25198] New: svn.html

2005-12-01 Thread jv244 at cam dot ac dot uk
Hi, currently the gcc.gnu.org/svn.html could be made clearer on how to check out a release. It mentions: SVN tags, branches and checkouts You can check out the latest version of the GCC x.y release branch with the following command: svn co svn://gcc.gnu.org/svn/gcc/branches/gcc-x_y-branch

[Bug target/25176] FAIL: Array_3 -O3 execution - bytecode->native test

2005-12-01 Thread christian dot joensson at gmail dot com
--- Comment #4 from christian dot joensson at gmail dot com 2005-12-01 10:06 --- Not 100% sure, but I do believe this has happend on sparc/sparc64 linux for a quite some time... -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25176

[Bug tree-optimization/23282] [4.0 Regression] wrong results at -O on x86

2005-12-01 Thread jv244 at cam dot ac dot uk
--- Comment #11 from jv244 at cam dot ac dot uk 2005-12-01 10:21 --- > > svn merge -r 101961:101962 svn://gcc.gnu.org/svn/gcc/trunk/gcc/tree-chrec.c > gcc/tree-chrec.c > Yes, this fixes the problem for me (tested on _4_0_1_release). This really should be applied to the branch I think.

[Bug c++/25199] New: crashing code output from -mtune=pentium4 but not -mtune=pentiumpro

2005-12-01 Thread caolanm at redhat dot com
A fairly tricky one. OOo compiled with -mtune=pentium4 will crash e.g. http://qa.openoffice.org/issues/show_bug.cgi?id=58368 eventually on drawing stuff. Problem traced to a particular file. Compied with -mtune=pentiumpro instead and crash dissappears. So taking -E code, attached here as salgdi.ii

[Bug c++/25199] crashing code output from -mtune=pentium4 but not -mtune=pentiumpro

2005-12-01 Thread caolanm at redhat dot com
--- Comment #1 from caolanm at redhat dot com 2005-12-01 10:27 --- Created an attachment (id=10374) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10374&action=view) preprocessed code -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25199

[Bug c++/25199] crashing code output from -mtune=pentium4 but not -mtune=pentiumpro

2005-12-01 Thread caolanm at redhat dot com
--- Comment #2 from caolanm at redhat dot com 2005-12-01 10:27 --- Created an attachment (id=10375) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10375&action=view) ok output -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25199

[Bug c++/25199] crashing code output from -mtune=pentium4 but not -mtune=pentiumpro

2005-12-01 Thread caolanm at redhat dot com
--- Comment #3 from caolanm at redhat dot com 2005-12-01 10:28 --- Created an attachment (id=10376) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10376&action=view) not ok output -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25199

[Bug c/25200] New: ICE compiling GNU tar

2005-12-01 Thread andreas at florath dot net
Hello! When compiling GNU tar 1.15.1, it stopps with: argp-help.c: In function 'make_hol': argp-help.c:430: warning: comparison is always true due to limited range of data type argp-help.c: In function 'hol_append': argp-help.c:831: warning: comparison is always true due to limited range of data

[Bug c++/25199] crashing code output from -mtune=pentium4 but not -mtune=pentiumpro

2005-12-01 Thread caolanm at redhat dot com
--- Comment #4 from caolanm at redhat dot com 2005-12-01 10:28 --- crash is X11SalGraphics::SetXORMode (this=0x34b3f10, bSet=0 '\0') at /home/caolan/ooo/SRC680_m142/vcl/unx/source/gdi/salgdi.cxx:695 695 if( !bXORMode_ == bSet ) where a bitfield is compare to unsigned char

[Bug fortran/25201] New: internal compiler error in open statement

2005-12-01 Thread iguchi at coral dot t dot u-tokyo dot ac dot jp
gfortran fails in compiling the following program. I wish this problem fixed soon. $ cat bug.f90 character(len=12) :: string = "SEQUENTIAL" open(10, access=trim(string)) end program $ gfortran bug.f90 bug.f90: In function 'MAIN__': bug.f90:2: internal compiler error: Segmentation fault Please sub

[Bug c/25200] ICE compiling GNU tar

2005-12-01 Thread belyshev at depni dot sinp dot msu dot ru
--- Comment #1 from belyshev at depni dot sinp dot msu dot ru 2005-12-01 10:48 --- (In reply to comment #0) > If you need other information, just drop me a mail. Please attach preprocessed source of argp-help.c as prescribed here: http://gcc.gnu.org/bugs.html#detailed -- belyshev

[Bug middle-end/25186] (short)(((int)short_var) <<1) should be folded so that the shift is done in the short type

2005-12-01 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2005-12-01 10:53 --- Confirmed. The first testcase is really just short *a; void f(void) { *a = *a << 1; } interestingly, the C frontend does not do integer promotion of unsigned short *a; void f(voif) { *a = *a << 1; } where *a

[Bug middle-end/25186] (short)(((int)short_var) <<1) should be folded so that the shift is done in the short type

2005-12-01 Thread rguenth at gcc dot gnu dot org
--- Comment #3 from rguenth at gcc dot gnu dot org 2005-12-01 11:01 --- Doh. The C frontend _does_ the promotion (in the unsigned case): (intD.0) *aD.1296 << 1 just convert.c:convert_to_integer "folds" it to a shift on unsigned short again. This transformation should be moved to fol

[Bug c/25200] ICE compiling GNU tar

2005-12-01 Thread andreas at florath dot net
--- Comment #2 from andreas at florath dot net 2005-12-01 11:12 --- Created an attachment (id=10377) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10377&action=view) Preprocessed argp-help.c. file Hello! Here the preprocessed argp-help.c. Regards Andre -- http://gcc.gnu.o

[Bug libstdc++/23406] libstdc++ fails to link with std::string on AIX

2005-12-01 Thread michael dot haubenwallner at salomon dot at
--- Comment #7 from michael dot haubenwallner at salomon dot at 2005-12-01 11:22 --- Just for completion: The problem is not GNU ar, but GNU nm. libstdc++ does not work when built with GNU nm, but works when built with AIX nm (always without GNU as/ld, but with GNU ar/objdump/ranlib/s

[Bug c/25200] ICE compiling GNU tar

2005-12-01 Thread ebotcazou at gcc dot gnu dot org
-- ebotcazou at gcc dot gnu dot org changed: What|Removed |Added CC||ebotcazou at gcc dot gnu dot |

[Bug c++/13384] error: non-lvalue in assignment - message a little misleading for C++

2005-12-01 Thread gdr at gcc dot gnu dot org
--- Comment #5 from gdr at gcc dot gnu dot org 2005-12-01 12:00 --- Subject: Bug 13384 Author: gdr Date: Thu Dec 1 12:00:17 2005 New Revision: 107816 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=107816 Log: PR c/13384 * c-common.c (lvalue_error): Fix wording.

[Bug c++/13384] error: non-lvalue in assignment - message a little misleading for C++

2005-12-01 Thread gdr at gcc dot gnu dot org
--- Comment #6 from gdr at gcc dot gnu dot org 2005-12-01 12:01 --- Fixed in 4.2.x (mainline). -- gdr at gcc dot gnu dot org changed: What|Removed |Added Stat

[Bug middle-end/25186] (short)(((int)short_var) <<1) should be folded so that the shift is done in the short type

2005-12-01 Thread rguenth at gcc dot gnu dot org
--- Comment #4 from rguenth at gcc dot gnu dot org 2005-12-01 12:28 --- convert_to_integer contains case LSHIFT_EXPR: /* We can pass truncation down through left shifting when the shift count is a nonnegative constant and the target type is un

[Bug middle-end/25181] [3.4 Regression] wrong "will never be executed" warning in switch - case block

2005-12-01 Thread oliverst at online dot de
--- Comment #5 from oliverst at online dot de 2005-12-01 12:32 --- (In reply to comment #1) > This is invalid code: > t.cc: In function ‘int test_18()’: > t.cc:15: error: jump to case label > t.cc:9: error: crosses initialization of ‘int ret’ > t.cc:18: error: jump to case label > t.cc

[Bug middle-end/25186] (short)(((int)short_var) <<1) should be folded so that the shift is done in the short type

2005-12-01 Thread rguenth at gcc dot gnu dot org
--- Comment #5 from rguenth at gcc dot gnu dot org 2005-12-01 12:46 --- I.e. 6.3.1.3/3 says that conversion from type T to signed type is implementation defined if the value doesn't fit. And we define it to reducing it modulo 2^N. So, for !flag_wrapv (short)((int)0x8000 << 1) == 0

[Bug libgcj/7532] shutdown hooks not run upon abnormal termination

2005-12-01 Thread thebohemian at gmx dot net
--- Comment #8 from thebohemian at gmx dot net 2005-12-01 12:46 --- Created an attachment (id=10378) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10378&action=view) a test for the shutdown situation Here is another small test case. Output on another free VM looks like this: jam

[Bug c++/24103] [3.4 Regression] ICE in simple_cst_equal

2005-12-01 Thread reichelt at gcc dot gnu dot org
--- Comment #4 from reichelt at gcc dot gnu dot org 2005-12-01 12:46 --- Patch posted. -- reichelt at gcc dot gnu dot org changed: What|Removed |Added AssignedTo

[Bug c++/25203] New: [4.0] enable checking failure in g++.dg/opt/mmx2.C

2005-12-01 Thread ghazi at gcc dot gnu dot org
On i686-pc-linux-gnu with current gcc-4.0.x, I'm getting a failure in g++.dg/opt/mmx2.C: http://gcc.gnu.org/ml/gcc-testresults/2005-11/msg01435.html I think it's triggered by turning on checking, because I don't see other people getting the error. I configured with: --enable-checking=yes,rtl I g

[Bug c++/25203] [4.0] enable checking failure in g++.dg/opt/mmx2.C

2005-12-01 Thread ghazi at gcc dot gnu dot org
-- ghazi at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.0.3 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25203

[Bug libgcj/7532] shutdown hooks not run upon abnormal termination

2005-12-01 Thread thebohemian at gmx dot net
--- Comment #9 from thebohemian at gmx dot net 2005-12-01 14:05 --- The Sun JVM does not run shutdown hooks and similar stuff when running with -Xrs[0]. [0] - http://www-inf.int-evry.fr/cours/java/jdk1.4docs/tooldocs/solaris/java.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=

[Bug c/25169] [4.0 regression] tree checking failures in gcc.dg/20040203-1.c, cast-1.c, cast-2.c, cast-3.c

2005-12-01 Thread ghazi at gcc dot gnu dot org
--- Comment #4 from ghazi at gcc dot gnu dot org 2005-12-01 14:05 --- My results from last night confirm it's fixed now, thanks. -- ghazi at gcc dot gnu dot org changed: What|Removed |Added --

[Bug libgcj/25204] New: incorrect SIGQUIT handling

2005-12-01 Thread thebohemian at gmx dot net
According to[0] the SIGQUIT signal should cause a dump of all threads the VM is running. Currently this does not happen and instead the VM is shut down. [0] - http://www-inf.int-evry.fr/cours/java/jdk1.4docs/tooldocs/solaris/java.html -- Summary: incorrect SIGQUIT handling

[Bug middle-end/25186] (short)(((int)short_var) <<1) should be folded so that the shift is done in the short type

2005-12-01 Thread rguenth at gcc dot gnu dot org
--- Comment #6 from rguenth at gcc dot gnu dot org 2005-12-01 14:17 --- I have two fixes. One really safe and one ok via IRC communication. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/25199] crashing code output from -mtune=pentium4 but not -mtune=pentiumpro

2005-12-01 Thread jakub at gcc dot gnu dot org
--- Comment #5 from jakub at gcc dot gnu dot org 2005-12-01 14:38 --- Finding a bug in 1M of assembly is really hard without knowing where exactly to look at. Nevertheless, I suspect: movl237(%edi), %esi in _ZN14X11SalGraphics10SetXORModeEh (whereas -mpentiumpro .s has movb237(%

[Bug c/25206] New: for loop with comma operator problem

2005-12-01 Thread ymonyak at lipowsky dot de
GCC 4.0.1 bilt by GNUARM. follow source has different read and store address by incrementing of "n". As result variable "n" will be not changed. unsigned short CommTxNum; static void foo (void) __attribute__ ((interrupt ("IRQ"))); void foo(void) { unsigned char n; for (n = 0; n < 3 && CommTxNu

[Bug c++/25199] crashing code output from -mtune=pentium4 but not -mtune=pentiumpro

2005-12-01 Thread jakub at gcc dot gnu dot org
--- Comment #6 from jakub at gcc dot gnu dot org 2005-12-01 14:55 --- I can't understand how movqi_1 can not consider aligned_operand at all. Will dig more... -- jakub at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/25199] crashing code output from -mtune=pentium4 but not -mtune=pentiumpro

2005-12-01 Thread caolanm at redhat dot com
--- Comment #7 from caolanm at redhat dot com 2005-12-01 14:59 --- Program received signal SIGSEGV, Segmentation fault. [witching to Thread -1209017888 (LWP 28260)] X11SalGraphics::SetXORMode (this=0x3cb0f10, bSet=0 '\0') at /home/caolan/ooo/SRC680_m142/vcl/unx/source/gdi/salgdi.cxx:

[Bug bootstrap/25207] New: bootstrap fails on libjava if alsa headers present but no -lasound.

2005-12-01 Thread hp at gcc dot gnu dot org
This is on FC4 with alsa-lib{.i386,x86-64} installed but only alsa-lib-devel.x86_64 (no alsa-lib-devel.i386). Hence the header files are there, but not the libraries when building the -m32 multilib. It looks as if configury looks for and finds header files but it's overlooked to also look for "aso

[Bug libgcj/25204] incorrect SIGQUIT handling

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-12-01 15:20 --- *** This bug has been marked as a duplicate of 15686 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added --

[Bug libgcj/15686] ^\ should print stack trace

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2005-12-01 15:20 --- *** Bug 25204 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug target/25199] crashing code output from -mtune=pentium4 but not -mtune=pentiumpro

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #8 from pinskia at gcc dot gnu dot org 2005-12-01 15:24 --- I thought this was already fixed (or at least was in 4.1.0), let me find the patch which might had fixed it). -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug target/25199] crashing code output from -mtune=pentium4 but not -mtune=pentiumpro

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #9 from pinskia at gcc dot gnu dot org 2005-12-01 15:25 --- Yes see PR 18019, it says it was fixed for 4.0.0. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25199

[Bug middle-end/25206] for loop with comma operator problem

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-12-01 15:28 --- HUH? Can you give the full source/ reduced source and give a little more detailed explication on what is going wrong. -- pinskia at gcc dot gnu dot org changed: What|Removed |A

[Bug bootstrap/25207] bootstrap fails on libjava if alsa headers present but no -lasound.

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-12-01 15:29 --- I want to say FC4 is wrong here, if it does not have a library, it should not have the headers. Can you also file this with Redhat? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25207

[Bug bootstrap/25207] bootstrap fails on libjava if alsa headers present but no -lasound.

2005-12-01 Thread aph at gcc dot gnu dot org
--- Comment #2 from aph at gcc dot gnu dot org 2005-12-01 15:31 --- It's caused by only one multilib being installed. The 64-bit one is there, not the 32-bit one. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25207

[Bug rtl-optimization/25115] [4.2 Regression] Segmentation fault in pre_insert_copy_insn

2005-12-01 Thread rguenth at gcc dot gnu dot org
--- Comment #7 from rguenth at gcc dot gnu dot org 2005-12-01 15:53 --- Assigning to bonzini by request. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/25180] [4.1/4.2 Regression] ICE during kernel build.

2005-12-01 Thread rguenth at gcc dot gnu dot org
--- Comment #10 from rguenth at gcc dot gnu dot org 2005-12-01 15:54 --- Assigning to bonzini by request. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/25206] for loop with comma operator problem

2005-12-01 Thread efim at lipowsky dot de
--- Comment #2 from efim at lipowsky dot de 2005-12-01 15:55 --- Subject: Re: for loop with comma operator problem pinskia at gcc dot gnu dot org schrieb: >--- Comment #1 from pinskia at gcc dot gnu dot org 2005-12-01 15:28 >--- >HUH? Can you give the full source/ reduced so

[Bug middle-end/25206] for loop with comma operator problem

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-12-01 16:00 --- (In reply to comment #2) > in the file you can see a snapshort with two arrows to read and store > addresses. > It is very simple source. This source does not show anything, it is not a full source. If you can rea

[Bug bootstrap/25207] bootstrap fails on libjava if alsa headers present but no -lasound.

2005-12-01 Thread hp at gcc dot gnu dot org
--- Comment #3 from hp at gcc dot gnu dot org 2005-12-01 16:29 --- In response to comment #1, no. The headers are provided by *both* alsa-lib-devel packages. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25207

[Bug target/25199] crashing code output from -mtune=pentium4 but not -mtune=pentiumpro

2005-12-01 Thread jakub at gcc dot gnu dot org
--- Comment #10 from jakub at gcc dot gnu dot org 2005-12-01 16:39 --- Well, clearly it is not fixed, as proven on stock gcc-4_0-branch with: /* { dg-do compile } */ /* { dg-options "-m32 -Os -fpic -mtune=pentium4" } */ struct S { void *p[30]; unsigned char a0 : 1; unsigned char a

[Bug fortran/25201] internal compiler error in open statement

2005-12-01 Thread kargl at gcc dot gnu dot org
--- Comment #1 from kargl at gcc dot gnu dot org 2005-12-01 17:16 --- This is fixed on 4.1 and mainline. I'm bootstrapping the latest 4.0.3 sources to see if it's present there. I note that you're reporting this against 4.0.0. I *highly* recommend that you update your compiler. --

[Bug middle-end/24950] [3.4/4.0/4.1/4.2 Regression] ICE in operand_subword_force

2005-12-01 Thread dalej at gcc dot gnu dot org
--- Comment #14 from dalej at gcc dot gnu dot org 2005-12-01 18:04 --- Subject: Bug 24950 Author: dalej Date: Thu Dec 1 18:04:20 2005 New Revision: 107826 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=107826 Log: 2005-12-01 Alan Modra <[EMAIL PROTECTED]> Radar 4345

[Bug fortran/25201] internal compiler error in open statement

2005-12-01 Thread kargl at gcc dot gnu dot org
--- Comment #2 from kargl at gcc dot gnu dot org 2005-12-01 18:07 --- This is also fixed in the 4.0.3 prelease source. -- kargl at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/25208] New: ICE

2005-12-01 Thread igodard at pacbell dot net
-save-temps interacts with -MMD option. Code ices with -MMD and without -save-temps; with -save-temps it complains "too many file names". The attached save-temps output was made with -MMD omitted but otherwise the same command line. -- Summary: ICE Product: gcc V

[Bug c++/25208] ICE

2005-12-01 Thread igodard at pacbell dot net
--- Comment #1 from igodard at pacbell dot net 2005-12-01 18:09 --- Created an attachment (id=10380) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10380&action=view) compiler output -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25208

[Bug c++/25208] ICE

2005-12-01 Thread igodard at pacbell dot net
--- Comment #2 from igodard at pacbell dot net 2005-12-01 18:10 --- Created an attachment (id=10381) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10381&action=view) source code -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25208

[Bug c++/25208] ICE

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-12-01 18:15 --- Can you give how you invoked GCC? I want to say this has been fixed already in a 3.4.x release. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25208

[Bug c++/25208] ICE

2005-12-01 Thread igodard at pacbell dot net
--- Comment #4 from igodard at pacbell dot net 2005-12-01 18:20 --- Here's what the compiler got. ~/ootbc/common/xptsys/test/src$ make test g++ -I/home/ivan/ootbc/common/include -I/home/ivan/ootbc/common/xptsys/include -I/home/ivan/boost/include/boost-1_33 -g -o0 -fmessage-length=80 -W

[Bug c++/25208] ICE

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2005-12-01 18:23 --- First: -o0 that will output the file as O. So I think this might be the double -o issue. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25208

[Bug c++/25208] ICE

2005-12-01 Thread igodard at pacbell dot net
--- Comment #6 from igodard at pacbell dot net 2005-12-01 18:25 --- The bug appears to be due to an interaction between -MMD and -Wall -Wextra. If I omit the warnings options then it compiles OK. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25208

[Bug c++/25208] ICE

2005-12-01 Thread igodard at pacbell dot net
--- Comment #7 from igodard at pacbell dot net 2005-12-01 18:27 --- Changing to -O0 also clears the ICE. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25208

[Bug driver/25208] [3.4/4.0/4.1/4.2 Regression] two outputs and -MMD

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #8 from pinskia at gcc dot gnu dot org 2005-12-01 18:29 --- The ICE is fixed on the mainline but that is not the real issue here as the following fails: gcc -c -oO t.c -o t.o -MMD As I noted before there are two -o heres which are causing the issue. -- pinskia at gcc dot

[Bug bootstrap/25207] bootstrap fails on libjava if alsa headers present but no -lasound.

2005-12-01 Thread hp at gcc dot gnu dot org
--- Comment #4 from hp at gcc dot gnu dot org 2005-12-01 18:36 --- "Aph" mentioned "green" were expected to fix it, so CC:ed. -- hp at gcc dot gnu dot org changed: What|Removed |Added

[Bug debug/25194] [4.1/4.2 Regression] ICE in dwarf2out for mesa with -O2 -funroll-loops -g

2005-12-01 Thread janis at gcc dot gnu dot org
--- Comment #5 from janis at gcc dot gnu dot org 2005-12-01 18:36 --- Interesting, Alan can't reproduce the failure I reported but his patch at http://gcc.gnu.org/ml/gcc-patches/2005-12/msg00015.html fixes it. I'll test again when the patch has been checked in and then close this PR.

[Bug bootstrap/25207] bootstrap fails on libjava if alsa headers present but no -lasound.

2005-12-01 Thread green at gcc dot gnu dot org
--- Comment #5 from green at gcc dot gnu dot org 2005-12-01 19:33 --- Subject: Bug 25207 Author: green Date: Thu Dec 1 19:33:42 2005 New Revision: 107828 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=107828 Log: 2005-12-01 Anthony Green <[EMAIL PROTECTED]> PR bootst

[Bug c++/25209] New: Spurious warning on placement new

2005-12-01 Thread igodard at pacbell dot net
-- Summary: Spurious warning on placement new Product: gcc Version: 3.4.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: igodard

[Bug c++/25209] Spurious warning on placement new

2005-12-01 Thread igodard at pacbell dot net
--- Comment #1 from igodard at pacbell dot net 2005-12-01 19:35 --- Created an attachment (id=10382) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10382&action=view) compiler output -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25209

[Bug c++/25209] Spurious warning on placement new

2005-12-01 Thread igodard at pacbell dot net
--- Comment #2 from igodard at pacbell dot net 2005-12-01 19:36 --- Created an attachment (id=10383) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10383&action=view) source code (compressed) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25209

[Bug libgomp/25210] New: Unable to compile GCC from gomp-20050608-branch

2005-12-01 Thread laksono at cs dot uh dot edu
Error while compiling GCC: /tmp/laksono/gomp-20050608-branch/build/./gcc/xgcc -B/tmp/laksono/gomp-20050608-branch/build/./gcc/ -B/tmp/laksono/x86_64-unknown-linux-gnu/bin/ -B/tmp/laksono/x86_64-unknown-linux-gnu/lib/ -isystem /tmp/laksono/x86_64-unknown-linux-gnu/include -isystem /tmp/laksono/x86_

[Bug bootstrap/25207] bootstrap fails on libjava if alsa headers present but no -lasound.

2005-12-01 Thread hp at gcc dot gnu dot org
--- Comment #6 from hp at gcc dot gnu dot org 2005-12-01 19:42 --- Exactly! -- hp at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED

[Bug libgomp/25210] Unable to compile GCC from gomp-20050608-branch

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-12-01 19:44 --- This is not a GCC bug, this is either you don't have the 32bit libraries install which means you need --disable-multilib or your distro has messed up which lib directory goes where. -- pinskia at gcc dot gnu dot

[Bug c++/25209] Spurious warning on placement new

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-12-01 19:55 --- Fixed at least in 3.4.5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug rtl-optimization/25197] [4.2 Regression] ICE: RTL check: expected code 'reg', have 'plus' in dwarf2out_frame_debug_expr, at dwarf2out.c:1781

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-12-01 19:59 --- I want to say this will be fixed by: http://gcc.gnu.org/ml/gcc-patches/2005-12/msg00015.html -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/25200] ICE compiling GNU tar

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-12-01 20:08 --- Hmm, the preprocessed source file looks not all the way here: it sends like char * __argp_short_program_name (void) { I don't know if this is becuase the preprocessor is seg faulting or it just did not get uploaded

[Bug bootstrap/25207] bootstrap fails on libjava if alsa headers present but no -lasound.

2005-12-01 Thread green at gcc dot gnu dot org
--- Comment #7 from green at gcc dot gnu dot org 2005-12-01 20:09 --- Subject: Bug 25207 Author: green Date: Thu Dec 1 20:09:06 2005 New Revision: 107829 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=107829 Log: 2005-12-01 Anthony Green <[EMAIL PROTECTED]> PR bootst

[Bug target/25190] Error: bad immediate value for offset (4100)

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-12-01 20:10 --- Could you attach the prepreocesed source? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25190

[Bug testsuite/25177] gcc.target/powerpc/pr18096-1.c fails on PPC

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-12-01 20:12 --- Fixed by: http://gcc.gnu.org/ml/gcc-patches/2005-12/msg00028.html -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug rtl-optimization/20070] If-conversion can't match equivalent code, and cross-jumping only works for literal matches

2005-12-01 Thread steven at gcc dot gnu dot org
--- Comment #21 from steven at gcc dot gnu dot org 2005-12-01 20:17 --- For Bug 21803 we could use similar infrastructure to what is proposed for this bug. -- steven at gcc dot gnu dot org changed: What|Removed |Added --

[Bug fortran/25147] passing variable in place of function dummy argument not caught

2005-12-01 Thread pault at gcc dot gnu dot org
--- Comment #1 from pault at gcc dot gnu dot org 2005-12-01 20:30 --- (In reply to comment #0) Confirmed. [EMAIL PROTECTED] gfortran]# ifort pr25147.f90 fortcom: Error: pr25147.f90, line 20: This actual argument must be the name of an external user function or the name of an intrinsic

[Bug fortran/25147] passing variable in place of function dummy argument not caught

2005-12-01 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last reconfi

[Bug target/24718] Shared libgcc not used for linking by default

2005-12-01 Thread sje at cup dot hp dot com
--- Comment #36 from sje at cup dot hp dot com 2005-12-01 21:03 --- Fixed and checked in on 3.4 branch in time for 3.4.5. -- sje at cup dot hp dot com changed: What|Removed |Added

[Bug middle-end/24703] [GOMP] Unable to compile OpenMP program with omp parallel for schedule(dynamic) directive

2005-12-01 Thread davidnicol at gmail dot com
--- Comment #6 from davidnicol at gmail dot com 2005-12-01 21:15 --- I found this bog because I was getting a lot of warnings of the style n function â: with no symbol name, just an odd character. I have tracked this down to xterm not displaying utf8 even though my LANG environment v

[Bug target/25190] Error: bad immediate value for offset (4100)

2005-12-01 Thread djohnson+gcc at sw dot starentnetworks dot com
--- Comment #2 from djohnson+gcc at sw dot starentnetworks dot com 2005-12-01 21:44 --- Created an attachment (id=10384) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10384&action=view) preprocessed file compile with: arm-linux-gcc -mbig-endian -march=armv5te -mtune=xscale -Wa,

[Bug tree-optimization/25211] New: verify_ssa ICE for mesa with -Os -ftree-loop-linear

2005-12-01 Thread janis at gcc dot gnu dot org
Current trunk and 4.1 branch ICE on powerpc-linux compiling mesa from SPEC CPU2000: elm3b11% /opt/gcc-nightly/4.1/bin/gcc -c -Os -ftree-loop-linear mesa1201.c mesa1201.c: In function ‘foo’: mesa1201.c:7: error: definition in block 9 does not dominate use in block 3 for SSA_NAME: q_25 in statement:

[Bug target/25212] New: unrecognizable insn for facerec with odd optimization set

2005-12-01 Thread janis at gcc dot gnu dot org
Current trunk and 4.1 branch ICE on powerpc-linux compiling facerec from SPEC CPU2000 with an admittedly odd set of options: elm3b11% /opt/gcc-nightly/4.1/bin/gfortran -c -O2 -funroll-loops -ftree-vectorize -maltivec -fno-ivopts -fpic fr1201.f fr1201.f: In function ‘foo’: fr1201.f:38: error: unrec

[Bug target/25212] unrecognizable insn for facerec with odd optimization set

2005-12-01 Thread janis at gcc dot gnu dot org
--- Comment #1 from janis at gcc dot gnu dot org 2005-12-01 22:09 --- Created an attachment (id=10385) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10385&action=view) minimized testcase -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25212

[Bug tree-optimization/25211] verify_ssa ICE for mesa with -Os -ftree-loop-linear

2005-12-01 Thread janis at gcc dot gnu dot org
--- Comment #1 from janis at gcc dot gnu dot org 2005-12-01 22:10 --- Created an attachment (id=10386) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10386&action=view) minimized testcase -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25211

[Bug middle-end/25158] FAIL: gcc.c-torture/execute/builtins/fprintf.c compilation

2005-12-01 Thread ghazi at gcc dot gnu dot org
--- Comment #6 from ghazi at gcc dot gnu dot org 2005-12-01 22:24 --- Fixed, clean test results here: http://gcc.gnu.org/ml/gcc-testresults/2005-12/msg00028.html -- ghazi at gcc dot gnu dot org changed: What|Removed |Added -

[Bug tree-optimization/25211] [4.1/4.2 Regression] verify_ssa ICE for mesa with -Os -ftree-loop-linear

2005-12-01 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Keywords||ice-on-valid-code Summary|verify_ssa ICE for mesa with|[4.

[Bug target/25212] [4.1/4.2 Regression] unrecognizable insn for facerec with odd optimization set

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-12-01 22:34 --- Hmm, I would assume this is related to PR 24997. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/25022] [3.4/4.0 regression] failure to transform the unlocked stdio calls

2005-12-01 Thread ghazi at gcc dot gnu dot org
--- Comment #6 from ghazi at gcc dot gnu dot org 2005-12-01 22:45 --- Updated 4.0 patch here: http://gcc.gnu.org/ml/gcc-patches/2005-12/msg00089.html -- ghazi at gcc dot gnu dot org changed: What|Removed |Added -

[Bug target/25212] [4.1/4.2 Regression] unrecognizable insn for facerec with odd optimization set

2005-12-01 Thread dje at gcc dot gnu dot org
--- Comment #3 from dje at gcc dot gnu dot org 2005-12-01 23:07 --- Yes, I think this is the same as PR 24997. -- dje at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/25212] [4.1/4.2 Regression] unrecognizable insn for facerec with odd optimization set

2005-12-01 Thread janis at gcc dot gnu dot org
--- Comment #4 from janis at gcc dot gnu dot org 2005-12-01 23:15 --- Except that the testcase still fails and the fix for 24997 was checked in a few days ago. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25212

[Bug testsuite/25193] libstdc++ testsuite fails on cygwin

2005-12-01 Thread billingd at gcc dot gnu dot org
--- Comment #1 from billingd at gcc dot gnu dot org 2005-12-01 23:57 --- Subject: Bug 25193 Author: billingd Date: Thu Dec 1 23:57:28 2005 New Revision: 107841 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=107841 Log: 2005-12-02 David Billinghurst ([EMAIL PROTECTED])

[Bug middle-end/24004] gcc 4.0.2 gives bogus 'may be unused warnings' at -O3

2005-12-01 Thread SLTxLQEc4vuR5kMzK at anime dot net
--- Comment #1 from SLTxLQEc4vuR5kMzK at anime dot net 2005-12-01 23:57 --- still present in 4.0.2 -- SLTxLQEc4vuR5kMzK at anime dot net changed: What|Removed |Added

[Bug testsuite/25193] libstdc++ testsuite fails on cygwin

2005-12-01 Thread billingd at gcc dot gnu dot org
--- Comment #2 from billingd at gcc dot gnu dot org 2005-12-01 23:58 --- Confirmed http://gcc.gnu.org/ml/gcc-testresults/2005-12/msg00046.html Patch http://gcc.gnu.org/ml/gcc-patches/2005-12/msg9.html Fixed in trunk revision 107841. -- billingd at gcc dot gnu dot org changed:

[Bug target/25213] New: [3.4] -fpic/-fPIC testsuite failures in gcc.dg/i386-387-3.c and i386-387-4.c

2005-12-01 Thread ghazi at gcc dot gnu dot org
On i686-pc-linux-gnu with the 3.4 branch, I'm getting failures in the following testcases when running with -fpic or -fPIC: FAIL: gcc.dg/i386-387-3.c scan-assembler fldpi FAIL: gcc.dg/i386-387-4.c scan-assembler fldpi Current testsuite report is here: http://gcc.gnu.org/ml/gcc-testresults/2005-12

[Bug target/25213] [3.4] -fpic/-fPIC testsuite failures in gcc.dg/i386-387-3.c and i386-387-4.c

2005-12-01 Thread ghazi at gcc dot gnu dot org
-- ghazi at gcc dot gnu dot org changed: What|Removed |Added Known to fail||3.4.5 Known to work||4.0.3 Target M

[Bug middle-end/24004] [4.0 Regression] bogus 'may be uninit warnings' for loops

2005-12-01 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-12-02 00:10 --- Note the warning is that bogus, take the following example: float a(void) { float i; float granularity = 0.01f; float dist = 0; float vec[2] = {0,0}; float lastPoint; f

[Bug target/25214] New: [3.4/4.0/4.1/4.2] -fpic/-fPIC testsuite failures in gcc.dg/i386-local2.c

2005-12-01 Thread ghazi at gcc dot gnu dot org
-- Summary: [3.4/4.0/4.1/4.2] -fpic/-fPIC testsuite failures in gcc.dg/i386-local2.c Product: gcc Version: 3.4.5 Status: UNCONFIRMED Severity: normal Priority: P3 Component: target AssignedTo:

[Bug target/25214] [3.4/4.0/4.1/4.2] -fpic/-fPIC testsuite failures in gcc.dg/i386-local2.c

2005-12-01 Thread ghazi at gcc dot gnu dot org
-- ghazi at gcc dot gnu dot org changed: What|Removed |Added OtherBugsDependingO||23224 nThis|| Known to f

[Bug middle-end/25176] FAIL: Array_3 -O3 execution - bytecode->native test

2005-12-01 Thread amodra at bigpond dot net dot au
-- amodra at bigpond dot net dot au changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |amodra at bigpond dot net |dot org

  1   2   >