[Bug c/33111] New: Bad code generation with -O2 (ARM 7 architecture)

2007-08-19 Thread gressau at optusnet dot com dot au
#define UIP_LLH_LEN 1 #define BUF ((uip_tcpip_hdr *)&uip_buf[UIP_LLH_LEN]) #define u8_t unsigned char #define u16_t unsigned short #define UIP_BUFSIZE 1000 typedef struct { /* IP header. */ u8_t vhl, tos, len[2], ipid[2], ipoffset[2], ttl,

[Bug c/33111] Bad code generation with -O2 (ARM 7 architecture)

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-08-19 08:59 --- > #define BUF ((uip_tcpip_hdr *)&uip_buf[UIP_LLH_LEN]) Right there is an alias violation. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33111

[Bug rtl-optimization/32557] [4.3 Regression] internal compiler error: RTL check: expected code 'reg', have 'subreg' in rhs_regno, at rtl.h:956

2007-08-19 Thread patchapp at dberlin dot org
--- Comment #4 from patchapp at dberlin dot org 2007-08-19 12:30 --- Subject: Bug number PR rtl-optimization/32557 A patch for this bug has been added to the patch tracker. The mailing list url for the patch is http://gcc.gnu.org/ml/gcc-patches/2007-08/msg01210.html -- http://gcc.g

[Bug c++/33112] New: ICE : canonical types differ for identical types const _CharT* [14] and const _CharT* [14]

2007-08-19 Thread sylvain dot pion at sophia dot inria dot fr
hread model: posix gcc version 4.3.0 20070819 (experimental) Compiling the attached preprocessed file with "-c -O2" produces the following ICE. Note that it is not deterministic: you usually need to repeat the compile 10-20 times to see it... [EMAIL PROTECTED]:/proj/geometrica/home/CGAL/

[Bug c++/33112] ICE : canonical types differ for identical types const _CharT* [14] and const _CharT* [14]

2007-08-19 Thread sylvain dot pion at sophia dot inria dot fr
--- Comment #1 from sylvain dot pion at sophia dot inria dot fr 2007-08-19 12:55 --- Created an attachment (id=14076) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14076&action=view) Compressed pre-processed C++ source code -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33112

[Bug target/30315] optimize unsigned-add overflow test on x86 to use cpu flags from addl

2007-08-19 Thread rask at gcc dot gnu dot org
--- Comment #12 from rask at gcc dot gnu dot org 2007-08-19 13:00 --- void *foo(unsigned a, unsigned b) { unsigned sum = a + b; if (sum < a) return 0; if (sum == 0) sum = 1; To be able to optimize both comparisons, we need to have the same comparison operands. The only w

[Bug c++/33112] ICE : canonical types differ for identical types const _CharT* [14] and const _CharT* [14]

2007-08-19 Thread steven at gcc dot gnu dot org
-- steven at gcc dot gnu dot org changed: What|Removed |Added CC||dgregor at gcc dot gnu dot |

[Bug c/33111] Bad code generation with -O2 (ARM 7 architecture)

2007-08-19 Thread gressau at optusnet dot com dot au
--- Comment #2 from gressau at optusnet dot com dot au 2007-08-19 13:23 --- The attached sample code does not illustrate the real problem. Further investigation is required why the code works with -O0 and does not work with -O2. -- gressau at optusnet dot com dot au changed:

[Bug tree-optimization/33113] New: Failing to represent the stride of a dataref when it is not a constant

2007-08-19 Thread dorit at gcc dot gnu dot org
In the following testcase: subroutine sub(aa,bb,n,m) implicit none integer, intent(in) :: n,m real, intent(inout) :: aa(n,m) real, intent(in):: bb(n,m) integer :: i,j do i = 1,m do j= 2,n aa(i,j)= aa(i,j-1)+bb(i,j-1) enddo enddo end subroutine end The stride of the

[Bug tree-optimization/32378] can't determine dependence (distinct sections of an array)

2007-08-19 Thread dorit at gcc dot gnu dot org
--- Comment #6 from dorit at gcc dot gnu dot org 2007-08-19 13:47 --- > Sebastian - any thughts/plans? Here's another testcase: subroutine sub(aa,bb,n,m) implicit none integer, intent(in) :: n,m real, intent(inout) :: aa(n,m) real, intent(in):: bb(n,m) integer :: i,j do

[Bug tree-optimization/33114] New: jc1 segault building lljava/java/util/AbstractMap.java

2007-08-19 Thread dps at simpson dot demon dot co dot uk
Using gcc 4.3.0 20070818 (experimental) has tI hit the following problem building libjava libtool: compile: /home/dps/src/egcs/gcc-i686/gcc/gcj -B/home/dps/src/egcs/gcc-i686/i686-pc-linux-gnu/libjava/ -B/home/dps/src/egcs/gcc-i686/gcc/ -ffloat-store -fomit-frame-pointer -Usun -fclasspath= -fbootc

[Bug preprocessor/30786] [4.1/4.2/4.3 Regression] ICE on _Pragma at end of file

2007-08-19 Thread tromey at gcc dot gnu dot org
--- Comment #4 from tromey at gcc dot gnu dot org 2007-08-19 16:13 --- I'm testing this patch. -- tromey at gcc dot gnu dot org changed: What|Removed |Added Assig

[Bug fortran/33106] Access of components of public entities of private types wrongly allowed

2007-08-19 Thread dfranke at gcc dot gnu dot org
--- Comment #1 from dfranke at gcc dot gnu dot org 2007-08-19 17:05 --- Confirmed and taken. -- dfranke at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/33106] Access of components of public entities of private types wrongly allowed

2007-08-19 Thread dfranke at gcc dot gnu dot org
--- Comment #2 from dfranke at gcc dot gnu dot org 2007-08-19 17:40 --- > The "print" statements are wrong(?); additionally for -std=f95 there > should be already an error for the compilation of the module. Tobias, does any other standard but F95 allow the usage of private derived typ

[Bug fortran/33106] Access of components of public entities of private types wrongly allowed

2007-08-19 Thread burnus at gcc dot gnu dot org
--- Comment #3 from burnus at gcc dot gnu dot org 2007-08-19 17:50 --- > does any other standard but F95 allow the usage of private derived type > outside their defining module? I'd think that an error is called for, > regardless of the version of the standard?! Believing NAG the foll

[Bug target/30315] optimize unsigned-add overflow test on x86 to use cpu flags from addl

2007-08-19 Thread ubizjak at gmail dot com
--- Comment #13 from ubizjak at gmail dot com 2007-08-19 18:03 --- (In reply to comment #12) > if (sum == 0) sum = 1; > > Additionally, the resulting asm seems to be a bit stupid: > > testl %edx, %edx > movl$1, %eax > cmove %eax, %edx > >

[Bug preprocessor/30786] [4.1/4.2/4.3 Regression] ICE on _Pragma at end of file

2007-08-19 Thread tromey at gcc dot gnu dot org
--- Comment #5 from tromey at gcc dot gnu dot org 2007-08-19 18:19 --- A program like '_Pragma /*comment*/' still gives an ICE. I'm testing an updated patch. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30786

[Bug fortran/33106] Access of components of public entities of private types wrongly allowed

2007-08-19 Thread burnus at gcc dot gnu dot org
--- Comment #4 from burnus at gcc dot gnu dot org 2007-08-19 18:54 --- Fortran 2003: --- 4.5.1.1 Accessibility Types that are defined in a module or accessible in that module by use association have either the PUBLIC or PRIVATE attribute. Types for which an access-spec is n

[Bug preprocessor/30786] [4.1/4.2/4.3 Regression] ICE on _Pragma at end of file

2007-08-19 Thread tromey at gcc dot gnu dot org
--- Comment #6 from tromey at gcc dot gnu dot org 2007-08-19 18:54 --- What does a plain "_Pragma" mean? Currently we try to give an error for this. However, it is not clear that this is actually erroneous. The copy of the standard that I am reading only mentions: A unary operator exp

[Bug tree-optimization/30564] [4.3 Regression] ice for legal code with -O3

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #14 from pinskia at gcc dot gnu dot org 2007-08-19 19:07 --- The testcases here don't crash anymore but the one from PR 32033 does: static int spready[] = { }; void explosion_map (int y) { for (int i = 0; i < 4; i++) if (y * spready[i] < 0) break; } void explos

[Bug tree-optimization/30564] [4.3 Regression] ice for legal code with -O3

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #15 from pinskia at gcc dot gnu dot org 2007-08-19 19:19 --- Testing a slight modifed version of the patch. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30564

[Bug libfortran/30162] I/O with named pipes does not work

2007-08-19 Thread jvdelisle at gcc dot gnu dot org
--- Comment #21 from jvdelisle at gcc dot gnu dot org 2007-08-19 19:45 --- This works on 4.2 and 4.3. Not planning to backport to 4.1. See if you can get a later version of gfortran. If you have problems doing so, check the gfortran wiki binaries. If that fails, let me know. --

[Bug target/33115] New: -march=native is not supported under x86 darwin

2007-08-19 Thread pinskia at gcc dot gnu dot org
Mentioned here: http://gcc.gnu.org/ml/gcc-help/2007-08/msg00200.html And I tested it to make sure it was still not supported: [andrew-pinskis-computer:~] apinski% ~/local-gcc/bin/gcc -march=native t.c -O2 -o - -S t.c:1: error: bad value (native) for -march= switch t.c:1: error: bad value (native)

[Bug middle-end/33029] [4.3 Regression] libgcc2.c:1890: internal compiler error: in local_cprop_pass, at gcse.c:3236

2007-08-19 Thread andreast at gcc dot gnu dot org
--- Comment #8 from andreast at gcc dot gnu dot org 2007-08-19 19:56 --- I can confirm the patch in comment 7 fixes the bootstrap failure here. Thanks! -- andreast at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug tree-optimization/33113] Failing to represent the stride (with array) of a dataref when it is not a constant

2007-08-19 Thread rakdver at gcc dot gnu dot org
--- Comment #1 from rakdver at gcc dot gnu dot org 2007-08-19 20:08 --- (In reply to comment #0) > In the following testcase: > > subroutine sub(aa,bb,n,m) > implicit none > integer, intent(in) :: n,m > real, intent(inout) :: aa(n,m) > real, intent(in):: bb(n,m) > integer

[Bug fortran/33116] New: External functions can be called as subroutine

2007-08-19 Thread burnus at gcc dot gnu dot org
If one uses EXTERNAL foo ! or PROCEDURE() :: foo foo might be either function or a subroutine. However, using REAL :: foo EXTERNAL foo ! or: PROCEDURE(REAL) :: foo foo is a function. However, gfortran happily allows the following: EXTERNAL foo REAL foo CALL foo() ! <- wrong NAG f95 diagnose

[Bug fortran/33117] New: Improve error message for generic interface with subroutines & functions

2007-08-19 Thread burnus at gcc dot gnu dot org
Mixing functions and subroutines in a generic interface is invalid. gfortran detects this but the error message is difficult to understand: Error: FUNCTION at (1) does not belong in a generic subroutine interface NAG f95: Error: b.f90, line 10: BAR and SUB must both be SUBROUTINEs or both be FUNC

[Bug target/33115] -march=native is not supported under x86 darwin

2007-08-19 Thread dje at gcc dot gnu dot org
--- Comment #1 from dje at gcc dot gnu dot org 2007-08-19 21:12 --- x86 darwin should be able to re-use the implementation from rs6000/driver-rs6000.c because the kernel interfaces to query the information are the same. -- dje at gcc dot gnu dot org changed: What|Remo

[Bug target/33115] -march=native is not supported under x86 darwin

2007-08-19 Thread pinskia at gmail dot com
--- Comment #2 from pinskia at gmail dot com 2007-08-19 21:39 --- Subject: Re: -march=native is not supported under x86 darwin On 19 Aug 2007 21:12:22 -, dje at gcc dot gnu dot org <[EMAIL PROTECTED]> wrote: > x86 darwin should be able to re-use the implementation from > rs6000/dri

[Bug target/33115] -march=native is not supported under x86 darwin

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2007-08-19 21:40 --- Mine as explained in comment #2 in how to fix this issue. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug c/33111] Bad code generation with -O2 (ARM 7 architecture)

2007-08-19 Thread gressau at optusnet dot com dot au
--- Comment #3 from gressau at optusnet dot com dot au 2007-08-19 22:22 --- Created an attachment (id=14077) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14077&action=view) This file does not compile correctly with -O2 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33111

[Bug c/33111] Bad code generation with -O2 (ARM 7 architecture)

2007-08-19 Thread gressau at optusnet dot com dot au
--- Comment #4 from gressau at optusnet dot com dot au 2007-08-19 22:24 --- Created an attachment (id=14078) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14078&action=view) This is the working unoptimized assembly of uip.c -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33111

[Bug c/33111] Bad code generation with -O2 (ARM 7 architecture)

2007-08-19 Thread gressau at optusnet dot com dot au
--- Comment #5 from gressau at optusnet dot com dot au 2007-08-19 22:25 --- Created an attachment (id=14079) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14079&action=view) This is the nonworking optimized assembly of uip.c -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=3311

[Bug target/33115] -march=native is not supported under x86 darwin

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2007-08-19 23:18 --- Patch in testing: Index: config/i386/darwin.h === --- config/i386/darwin.h(revision 127626) +++ config/i386/darwin.h(working copy) @@ -8

[Bug tree-optimization/32772] [4.3 Regression] error: found real variable when subvariables should have appeared

2007-08-19 Thread dberlin at gcc dot gnu dot org
--- Comment #8 from dberlin at gcc dot gnu dot org 2007-08-19 23:23 --- Subject: Bug 32772 Author: dberlin Date: Sun Aug 19 23:23:29 2007 New Revision: 127629 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=127629 Log: 2007-08-19 Daniel Berlin <[EMAIL PROTECTED]> Fix P

[Bug tree-optimization/32303] [4.3 Regression] SPEC2006 447.dealII miscompiled at -O2

2007-08-19 Thread dberlin at gcc dot gnu dot org
--- Comment #2 from dberlin at gcc dot gnu dot org 2007-08-19 23:23 --- Subject: Bug 32303 Author: dberlin Date: Sun Aug 19 23:23:29 2007 New Revision: 127629 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=127629 Log: 2007-08-19 Daniel Berlin <[EMAIL PROTECTED]> Fix P

[Bug tree-optimization/32328] [4.2/4.3 Regression] -fstrict-aliasing causes skipped code

2007-08-19 Thread dberlin at gcc dot gnu dot org
--- Comment #21 from dberlin at gcc dot gnu dot org 2007-08-19 23:23 --- Subject: Bug 32328 Author: dberlin Date: Sun Aug 19 23:23:29 2007 New Revision: 127629 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=127629 Log: 2007-08-19 Daniel Berlin <[EMAIL PROTECTED]> Fix

[Bug c++/32716] [4.2/4.3 Regression] Wrong code generation. Alias and C++ virtual bases problem.

2007-08-19 Thread dberlin at gcc dot gnu dot org
--- Comment #8 from dberlin at gcc dot gnu dot org 2007-08-19 23:23 --- Subject: Bug 32716 Author: dberlin Date: Sun Aug 19 23:23:29 2007 New Revision: 127629 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=127629 Log: 2007-08-19 Daniel Berlin <[EMAIL PROTECTED]> Fix P

[Bug middle-end/32940] REG_POINTER attribute on DECL_ARTIFICIAL pointers

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #7 from pinskia at gcc dot gnu dot org 2007-08-20 00:48 --- Subject: Bug 32940 Author: pinskia Date: Mon Aug 20 00:48:09 2007 New Revision: 127634 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=127634 Log: 2007-08-19 Andrew Pinski <[EMAIL PROTECTED]> PR mi

[Bug middle-end/32940] REG_POINTER attribute on DECL_ARTIFICIAL pointers

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #8 from pinskia at gcc dot gnu dot org 2007-08-20 00:48 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug testsuite/31884] priority_queue_dijkstra.cc operates on deallocated memory

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2007-08-20 00:56 --- This test now works for me on i386-apple-darwin, it was failing before this patch. Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug middle-end/33092] [4.3 Regrsssion] Using -O1 -fno-tree-salias results in ICE

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2007-08-20 01:46 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCON

[Bug tree-optimization/32328] [4.2/4.3 Regression] -fstrict-aliasing causes skipped code

2007-08-19 Thread dberlin at gcc dot gnu dot org
--- Comment #22 from dberlin at gcc dot gnu dot org 2007-08-20 01:54 --- All should be fixed -- dberlin at gcc dot gnu dot org changed: What|Removed |Added S

[Bug tree-optimization/32303] [4.3 Regression] SPEC2006 447.dealII miscompiled at -O2

2007-08-19 Thread dberlin at gcc dot gnu dot org
--- Comment #3 from dberlin at gcc dot gnu dot org 2007-08-20 01:54 --- All should be fixed -- dberlin at gcc dot gnu dot org changed: What|Removed |Added Sta

[Bug tree-optimization/32772] [4.3 Regression] error: found real variable when subvariables should have appeared

2007-08-19 Thread dberlin at gcc dot gnu dot org
--- Comment #9 from dberlin at gcc dot gnu dot org 2007-08-20 01:54 --- All should be fixed -- dberlin at gcc dot gnu dot org changed: What|Removed |Added Sta

[Bug c++/32716] [4.2/4.3 Regression] Wrong code generation. Alias and C++ virtual bases problem.

2007-08-19 Thread dberlin at gcc dot gnu dot org
--- Comment #9 from dberlin at gcc dot gnu dot org 2007-08-20 01:54 --- All should be fixed -- dberlin at gcc dot gnu dot org changed: What|Removed |Added Sta

[Bug tree-optimization/32723] [4.2 Regression] memory hog in solve_graph

2007-08-19 Thread dberlin at gcc dot gnu dot org
--- Comment #11 from dberlin at gcc dot gnu dot org 2007-08-20 01:56 --- Uh, it doesn't take 1 gig on either 4.2 or 4.3 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32723

[Bug c++/33118] New: [4.3 Regression] #'argument_pack_select' not supported by dump_expr#

2007-08-19 Thread pinskia at gcc dot gnu dot org
Testcase: template struct __add_const_lvalue_reference; template class tuple { tuple(typename __add_const_lvalue_reference<_Elements>::type ...) ; }; tuple i; - CUT - Found while cutting down PR 33091. This is a regression because the error message was ok in 4.2.0 and before. On th

[Bug c++/33118] [4.3 Regression] #'argument_pack_select' not supported by dump_expr#

2007-08-19 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=33118

[Bug fortran/20896] [4.2 and 4.1 only] ambiguous interface not detected

2007-08-19 Thread pault at gcc dot gnu dot org
--- Comment #10 from pault at gcc dot gnu dot org 2007-08-20 03:48 --- (In reply to comment #9) > (In reply to comment #8) > > Paul, what is the status on this one? > > ping? > Go back to the thread on it. I did not seem able to satisfy the reviewer as to my interpretation of the stan

[Bug fortran/33116] External functions can be called as subroutine

2007-08-19 Thread pault at gcc dot gnu dot org
--- Comment #1 from pault at gcc dot gnu dot org 2007-08-20 03:59 --- Tobias, EXTERNAL foo REAL foo CALL foo() ! <- wrong END with 4.3.0 20070815, gfc gives: test.f90:1.14: EXTERNAL foo 1 test.f90:3.23: CALL foo() ! <- wrong 2 Error: 'foo

[Bug target/33115] -march=native is not supported under x86 darwin

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2007-08-20 05:16 --- Subject: Bug 33115 Author: pinskia Date: Mon Aug 20 05:16:10 2007 New Revision: 127635 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=127635 Log: 2007-08-19 Andrew Pinski <[EMAIL PROTECTED]> PR ta

[Bug target/33115] -march=native is not supported under x86 darwin

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2007-08-20 05:30 --- Fixed (I added a space after %(cc1_cpu) for the final patch). -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug tree-optimization/33113] Failing to represent the stride (with array) of a dataref when it is not a constant

2007-08-19 Thread dorit at gcc dot gnu dot org
--- Comment #2 from dorit at gcc dot gnu dot org 2007-08-20 05:55 --- > Making us return symbolic stride would not be hard. The problem is that data > dependence analysis would fail anyway, sometimes (not in this testcases) there won't be a need for dependence testing - e.g. a reducti

[Bug fortran/33116] External functions can be called as subroutine

2007-08-19 Thread burnus at gcc dot gnu dot org
--- Comment #2 from burnus at gcc dot gnu dot org 2007-08-20 06:02 --- Hmm. I wonder why it did not work - probably I mixed it up with PROCEDURE(REAL). -- burnus at gcc dot gnu dot org changed: What|Removed |Added --

[Bug c++/30303] [4.2/4.3 regression] ICE with invalid constructor definition

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #7 from pinskia at gcc dot gnu dot org 2007-08-20 06:18 --- testing the patch right now -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30303

[Bug fortran/33106] Access of components of public entities of private types wrongly allowed

2007-08-19 Thread burnus at gcc dot gnu dot org
--- Comment #5 from burnus at gcc dot gnu dot org 2007-08-20 06:21 --- Richard Maine claims that also print *, code_gree is valid. Thus there needs to be only a Fortran 95 check in module. http://groups.google.com/group/comp.lang.fortran/browse_thread/thread/6f683312292e2865/ Note: T

[Bug rtl-optimization/31888] inefficient comparison sequence - cond jump to label after immediately-following cond jump

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2007-08-20 06:38 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRM

[Bug target/5212] [Hurd] profiling support for i386-gnu specs file

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #11 from pinskia at gcc dot gnu dot org 2007-08-20 06:40 --- Fixed by: 2007-08-08 Samuel Thibault <[EMAIL PROTECTED]> * gcc/config/i386/gnu.h (STARTFILE_SPEC): Use gcrt0.o in profile mode, add -profile option, add pie support. (ENDFILE_SPEC): New s

[Bug bootstrap/33065] warning in Comparing stages 2 and 3 stage3-gcc: No such file or directory (objdir==srcdir)

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #8 from pinskia at gcc dot gnu dot org 2007-08-20 06:42 --- >Bootstrap comparison failure! >./ada/exp_aggr.o differs >make[2]: *** [compare] Error 1 This was PR 32941 and has been fixed on the trunk. -- pinskia at gcc dot gnu dot org changed: What|Remove

[Bug bootstrap/33070] Bootstrap comparison failure between stage2/3 but no objdump differences

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-08-20 06:45 --- Considering how old 3.4.3 is, I doubt we can do anything to help you here except to suggest to try 4.2.1, the latest release. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33070

[Bug target/31868] Non-Linux DWARF EH x86-64 targets have broken crtend.o

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2007-08-20 06:49 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRM

[Bug target/32522] [4.3 Regression] Bootstrap failure on Alpha due to pointer-plus changes

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #13 from pinskia at gcc dot gnu dot org 2007-08-20 06:53 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|NEW

[Bug target/32522] [4.3 Regression] Bootstrap failure on Alpha due to pointer-plus changes

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #14 from pinskia at gcc dot gnu dot org 2007-08-20 06:53 --- Subject: Bug 32522 Author: pinskia Date: Mon Aug 20 06:53:05 2007 New Revision: 127637 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=127637 Log: 2007-08-19 Andrew Pinski <[EMAIL PROTECTED]> S

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

2007-08-19 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-08-20 06:59 --- The tree-opt ICE is not the real issue here but this error is: > ../../../../../gcc/libjava/classpath/java/util/AbstractMap.java:604: error: > class 'java.util.AbstractMap$2' has no method named 'access$0' matching