[Bug rtl-optimization/28618] The scheduler extends the lifetime of CLASS_LIKELY_SPILLED registers

2006-09-15 Thread ebotcazou at gcc dot gnu dot org
--- Comment #12 from ebotcazou at gcc dot gnu dot org 2006-09-15 07:31 --- > > Why not use reg_last->sets? > > > AFAICT, reg_last[0].sets is live at that point. Sorry, I don't understand your answer. I was suggesting to use reg_last->sets to get the last set of the reg instead of pri

[Bug c++/29087] [4.1/4.2 Regression] More than 35000 switch cases crash cc1plus

2006-09-15 Thread rguenth at gcc dot gnu dot org
--- Comment #1 from rguenth at gcc dot gnu dot org 2006-09-15 08:26 --- Confirmed. It looks like the C++ frontend recursively parses switch statements... #1052 0x0815ceae in cp_parser_statement (parser=0xb7d85ea0, in_statement_expr=0x0) at /space/rguenther/src/svn/gcc-4_1-branc

[Bug c++/20599] variadic template support

2006-09-15 Thread rguenth at gcc dot gnu dot org
--- Comment #8 from rguenth at gcc dot gnu dot org 2006-09-15 08:39 --- I second that. In addition to that I would welcome a warning for current C++ if I use keywords that are reserved in C++0x. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20599

[Bug ada/18817] ACATS c380004 fails at run time

2006-09-15 Thread ebotcazou at gcc dot gnu dot org
--- Comment #8 from ebotcazou at gcc dot gnu dot org 2006-09-15 08:59 --- Subject: Bug 18817 Author: ebotcazou Date: Fri Sep 15 08:59:02 2006 New Revision: 116964 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116964 Log: PR ada/18817 * utils.c (max_size): Perfo

[Bug ada/18817] ACATS c380004 fails at run time

2006-09-15 Thread ebotcazou at gcc dot gnu dot org
--- Comment #9 from ebotcazou at gcc dot gnu dot org 2006-09-15 09:03 --- Fixed on mainline. -- ebotcazou at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/28526] 'end' is recognized as a variable incorrectly

2006-09-15 Thread patchapp at dberlin dot org
--- Comment #7 from patchapp at dberlin dot org 2006-09-15 10:05 --- Subject: Bug number PR28526 A patch for this bug has been added to the patch tracker. The mailing list url for the patch is http://gcc.gnu.org/ml/gcc-patches/2006-09/msg00582.html -- http://gcc.gnu.org/bugzilla/sh

[Bug fortran/29097] New: !$ include 'omp_lib.h' does not work

2006-09-15 Thread bartoldeman at users dot sourceforge dot net
The following conditional OpenMP inclusion does not work in gfortran (gcc version 4.2.0 20060824 (experimental)): program test !$ include 'omp_lib.h' end $ gfortran -c -fopenmp test.f90 In file test.f90:2 !$ include 'omp_lib.h' 1 Error: Unclassifiable statement at (1) !$ use omp_lib works ho

[Bug fortran/29098] New: allocation of a pointer to a derived type crashes

2006-09-15 Thread vahtras at pdc dot kth dot se
Symptom: $ gfortran -c test.F90 test.F90: In function 'MAIN__': test.F90:24: internal compiler error: in gfc_trans_call, at fortran/trans-stmt.c:325 Please submit a full bug report, with preprocessed source if appropriate. See http://gcc.gnu.org/bugs.html> for instructions. Version: $ gfortran -v

[Bug fortran/29098] allocation of a pointer to a derived type crashes

2006-09-15 Thread paul dot richard dot thomas at cea dot fr
--- Comment #1 from paul dot richard dot thomas at cea dot fr 2006-09-15 13:12 --- Olav, Thanks for the contribution: TYPE BLOCK INTEGER, DIMENSION(:), POINTER :: R => NULL(),C => NULL() TYPE(BAS), POINTER, DIMENSION(:) :: NO => NULL () END TYPE BLOCK gives you a w

[Bug fortran/29053] Consecutive STREAM I/O file positions mixed up

2006-09-15 Thread jvdelisle at gcc dot gnu dot org
--- Comment #5 from jvdelisle at gcc dot gnu dot org 2006-09-15 13:16 --- Subject: Bug 29053 Author: jvdelisle Date: Fri Sep 15 13:16:15 2006 New Revision: 116970 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116970 Log: 2006-09-14 Jerry DeLisle <[EMAIL PROTECTED]>

[Bug fortran/29053] Consecutive STREAM I/O file positions mixed up

2006-09-15 Thread jvdelisle at gcc dot gnu dot org
--- Comment #6 from jvdelisle at gcc dot gnu dot org 2006-09-15 13:32 --- Subject: Bug 29053 Author: jvdelisle Date: Fri Sep 15 13:32:12 2006 New Revision: 116971 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116971 Log: 2006-09-15 Jerry DeLisle <[EMAIL PROTECTED]>

[Bug fortran/29053] Consecutive STREAM I/O file positions mixed up

2006-09-15 Thread jvdelisle at gcc dot gnu dot org
--- Comment #7 from jvdelisle at gcc dot gnu dot org 2006-09-15 13:33 --- Fixed on 4.2, will not go to 4.1. -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added --

[Bug libfortran/28747] Empty write STREAM I/O file positioning problem

2006-09-15 Thread jvdelisle at gcc dot gnu dot org
--- Comment #9 from jvdelisle at gcc dot gnu dot org 2006-09-15 13:35 --- Fixed on 4.2, will not go to 4.1 *** This bug has been marked as a duplicate of 29053 *** -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added -

[Bug fortran/29053] Consecutive STREAM I/O file positions mixed up

2006-09-15 Thread jvdelisle at gcc dot gnu dot org
--- Comment #8 from jvdelisle at gcc dot gnu dot org 2006-09-15 13:35 --- *** Bug 28747 has been marked as a duplicate of this bug. *** -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29053

[Bug c++/29080] [4.0/4.1/4.2 Regression] Multiple-inheritance with template method function code triggers "internal compiler error: in build_base_path, at cp/class.c:273"

2006-09-15 Thread bangerth at dealii dot org
--- Comment #3 from bangerth at dealii dot org 2006-09-15 13:49 --- Confirmed. This is the valid testcase: struct Base { template void method() { } }; struct Left : public Base { }; struct Right : public Base { }; struct Join : public Left, public Right { }; void

[Bug fortran/29098] allocation of a pointer to a derived type crashes

2006-09-15 Thread paul dot richard dot thomas at cea dot fr
--- Comment #2 from paul dot richard dot thomas at cea dot fr 2006-09-15 14:16 --- Created an attachment (id=12276) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12276&action=view) A fix for the problem The handling of default initializers can never have been quite right. The mom

[Bug c++/29087] [4.1/4.2 Regression] More than 35000 switch cases crash cc1plus

2006-09-15 Thread steven at gcc dot gnu dot org
--- Comment #2 from steven at gcc dot gnu dot org 2006-09-15 15:23 --- Re. comment #1 Yes, it is a _Recursive_ descent parser after all... Probably the only solution is to parse the label and not descend. This is what the C front end does, see c_parser_statement. -- http://gcc.gnu

[Bug libfortran/29099] New: secnds intrinsic gives wrong result

2006-09-15 Thread jvdelisle at gcc dot gnu dot org
With little or no delay between calls to secnds the wrong result is given: secnds.f: character*20 dum1, dum2, dum3 real t1, t2 real dat1, dat2 real dt integer i, j, values(8) dt = 40e-3 t1 = secnds (0.0) call date_and_time (dum1, dum2, dum3, values)

[Bug libfortran/29099] secnds intrinsic gives wrong result

2006-09-15 Thread jvdelisle at gcc dot gnu dot org
--- Comment #1 from jvdelisle at gcc dot gnu dot org 2006-09-15 15:51 --- Patch to fix this: Index: intrinsics/date_and_time.c === *** intrinsics/date_and_time.c (revision 116941) --- intrinsics/date_and_time.c (working

[Bug libfortran/29099] secnds intrinsic gives wrong result

2006-09-15 Thread jvdelisle at gcc dot gnu dot org
--- Comment #2 from jvdelisle at gcc dot gnu dot org 2006-09-15 16:04 --- Subject: Bug 29099 Author: jvdelisle Date: Fri Sep 15 16:03:52 2006 New Revision: 116975 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116975 Log: 2006-09-15 Jerry DeLisle <[EMAIL PROTECTED]>

[Bug target/29100] New: use of fmac causes excess precision problems

2006-09-15 Thread amylaar at gcc dot gnu dot org
The use of fmac (-m2e, -m3e, m4-single-only) causes excess precision problems, which show up when running paranoia: -Multiplication appears to round correctly. +* is neither chopped nor correctly rounded. -Checking for sticky bit. -Sticky bit apparently used correctly. +Sticky bit used incorrect

[Bug libfortran/29099] secnds intrinsic gives wrong result

2006-09-15 Thread jvdelisle at gcc dot gnu dot org
--- Comment #3 from jvdelisle at gcc dot gnu dot org 2006-09-15 16:08 --- Subject: Bug 29099 Author: jvdelisle Date: Fri Sep 15 16:07:53 2006 New Revision: 116976 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116976 Log: 2006-09-15 Jerry DeLisle <[EMAIL PROTECTED]>

[Bug libfortran/29099] secnds intrinsic gives wrong result

2006-09-15 Thread jvdelisle at gcc dot gnu dot org
--- Comment #4 from jvdelisle at gcc dot gnu dot org 2006-09-15 16:08 --- Fixed on 4.2 -- jvdelisle at gcc dot gnu dot org changed: What|Removed |Added Statu

[Bug target/29100] use of fmac causes excess precision problems

2006-09-15 Thread amylaar at gcc dot gnu dot org
--- Comment #1 from amylaar at gcc dot gnu dot org 2006-09-15 16:14 --- Created an attachment (id=12277) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12277&action=view) patch to add -mfused-madd option It is debatable what the right default for this option should be. When that is

[Bug c++/29087] [4.1/4.2 Regression] More than 35000 switch cases crash cc1plus

2006-09-15 Thread steven at gcc dot gnu dot org
--- Comment #3 from steven at gcc dot gnu dot org 2006-09-15 16:24 --- Trying a fix (but don't hold your breath, the c++ parser is unexplored territory for me ;-) -- steven at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug libstdc++/29095] [4.0/4.1/4.2 Regression] cxxabi.h __cxa_cdtor_type not declared when included from "C"

2006-09-15 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-09-15 16:27 --- Caused by: 2004-09-15 Mark Mitchell <[EMAIL PROTECTED]> * config/cpu/arm/cxxabi_tweaks.h (__cxa_cdtor_return_type): Define. * config/cpu/generic/cxxabi_tweaks.h (__cxa_cdtor_return_type):

[Bug fortran/29051] segfault when too few values are in data statement of character array

2006-09-15 Thread pault at gcc dot gnu dot org
--- Comment #6 from pault at gcc dot gnu dot org 2006-09-15 16:31 --- Subject: Bug 29051 Author: pault Date: Fri Sep 15 16:30:52 2006 New Revision: 116977 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116977 Log: 2006-09-15 Paul Thomas <[EMAIL PROTECTED]> PR fortran/

[Bug fortran/29051] segfault when too few values are in data statement of character array

2006-09-15 Thread pault at gcc dot gnu dot org
--- Comment #7 from pault at gcc dot gnu dot org 2006-09-15 16:39 --- Subject: Bug 29051 Author: pault Date: Fri Sep 15 16:38:51 2006 New Revision: 116978 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116978 Log: 2006-09-15 Paul Thomas <[EMAIL PROTECTED]> PR fortran/

[Bug fortran/29051] segfault when too few values are in data statement of character array

2006-09-15 Thread pault at gcc dot gnu dot org
--- Comment #8 from pault at gcc dot gnu dot org 2006-09-15 16:39 --- Fixed on trunk and 4.1 Thanks, Bud Paul -- pault at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug c++/29018] empty enum accepted

2006-09-15 Thread sje at cup dot hp dot com
--- Comment #2 from sje at cup dot hp dot com 2006-09-15 16:46 --- I took a quick look at this bug, the fix is easy, I have included a patch I created. The problem is that there are 172 tests in the g++ and libstdc++ test suites that have empty enums in them. If we give an error on emp

[Bug target/28946] [4.0/4.1 Regression] assembler shifts set the flag ZF, no need to re-test to zero

2006-09-15 Thread uros at gcc dot gnu dot org
--- Comment #12 from uros at gcc dot gnu dot org 2006-09-15 17:42 --- Subject: Bug 28946 Author: uros Date: Fri Sep 15 17:42:40 2006 New Revision: 116979 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116979 Log: PR target/28946 * config/i386/i386.md ("*ashldi3_c

[Bug middle-end/28967] ld 4.1.1 runs EXTREMLY slow compared to 4.0

2006-09-15 Thread andy314 at gmail dot com
--- Comment #3 from andy314 at gmail dot com 2006-09-15 18:13 --- I am also experiencing extreamly slow link times with GCC 4.1 (shipping with Suse 10.1) as opposed to link times I got with previous versions. The application uses a lot of templates/STL and the final complied binary is 34

[Bug ada/15802] ICE at expr.c:6764 (placeholder mechanism)

2006-09-15 Thread ebotcazou at gcc dot gnu dot org
--- Comment #4 from ebotcazou at gcc dot gnu dot org 2006-09-15 18:32 --- Subject: Bug 15802 Author: ebotcazou Date: Fri Sep 15 18:32:24 2006 New Revision: 116981 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116981 Log: PR ada/15802 * decl.c (same_discriminant

[Bug middle-end/28967] ld 4.1.1 runs EXTREMLY slow compared to 4.0

2006-09-15 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-09-15 18:33 --- (In reply to comment #3) > I am also experiencing extreamly slow link times with GCC 4.1 (shipping with > Suse 10.1) as opposed to link times I got with previous versions. The > application uses a lot of templates/ST

[Bug ada/15802] ICE at expr.c:6764 (placeholder mechanism)

2006-09-15 Thread ebotcazou at gcc dot gnu dot org
--- Comment #5 from ebotcazou at gcc dot gnu dot org 2006-09-15 18:37 --- Fixed on mainline. -- ebotcazou at gcc dot gnu dot org changed: What|Removed |Added

[Bug c/29092] [4.0/4.1/4.2 Regression] vector int a = (vector int) { 1,1,2,2} is rejected as non constant

2006-09-15 Thread janis at gcc dot gnu dot org
--- Comment #3 from janis at gcc dot gnu dot org 2006-09-15 19:17 --- A regression hunt on powerpc-linux identified this patch: http://gcc.gnu.org/viewcvs?view=rev&rev=79544 r79544 | bonzini | 2004-03-16 20:37:31 + (Tue, 16 Mar 2004) -- http://gcc.gnu.org/bugzilla/show

[Bug rtl-optimization/28618] The scheduler extends the lifetime of CLASS_LIKELY_SPILLED registers

2006-09-15 Thread amylaar at gcc dot gnu dot org
--- Comment #13 from amylaar at gcc dot gnu dot org 2006-09-15 19:27 --- Created an attachment (id=12278) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12278&action=view) patch using reg_last[regno+i].sets -- amylaar at gcc dot gnu dot org changed: What|Removed

[Bug libfortran/29101] New: memory leak in libgfortran

2006-09-15 Thread franke dot daniel at gmail dot com
Please find below a stripped down testcase and a session log from valgrind. The code reads input from stdin, compares what was read against a couple of choices (exactly one in this case) and repeats reading until a single 'x' was entered. The leak is related to the length of the input buffer withi

[Bug c++/29087] [4.1/4.2 Regression] More than 35000 switch cases crash cc1plus

2006-09-15 Thread steven at gcc dot gnu dot org
--- Comment #4 from steven at gcc dot gnu dot org 2006-09-15 21:01 --- Created an attachment (id=12279) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12279&action=view) tentative patch This removes the recursion cycle "cp_parser_statement -> cp_parser_labeled_statement -> cp_parse

[Bug bootstrap/29102] New: mudflap's configure tries to link a binary and fails because I don

2006-09-15 Thread felix-gcc at fefe dot de
-- Summary: mudflap's configure tries to link a binary and fails because I don Product: gcc Version: 4.1.1 Status: UNCONFIRMED Severity: critical Priority: P3 Component: bootstrap AssignedTo: u

[Bug c++/29087] [4.1/4.2 Regression] More than 35000 switch cases crash cc1plus

2006-09-15 Thread steven at gcc dot gnu dot org
--- Comment #5 from steven at gcc dot gnu dot org 2006-09-15 21:22 --- Test case: - extern void bar (); extern void baz (); #define L1(x) \ case x##0: case x##1: case x##2: case x##3: \ case x##4: case x##5: case x##6: case x##7 #define L2(x) \

[Bug bootstrap/29102] mudflap's configure tries to link a binary and fails because I don

2006-09-15 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Severity|critical|normal http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29102

[Bug bootstrap/29102] mudflap's configure tries to link a binary and fails because I don

2006-09-15 Thread felix-gcc at fefe dot de
--- Comment #1 from felix-gcc at fefe dot de 2006-09-15 22:14 --- Turns out you can still do make install and get a working cross compiler after that, so I concur it's normal and not critical. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29102

[Bug bootstrap/29102] mudflap's configure tries to link a binary and fails because I don

2006-09-15 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-09-15 22:16 --- Well the summary cuts off at "because I don". Can you write what you wantted to write in a comment? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29102

[Bug pch/11341] [cygwin] [pch] ICE in ggc_pop_context, at ggc-page.c:1441 while compiling libstc++3

2006-09-15 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|4.0.0 |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11341

[Bug target/28490] [4.0/4.1/4.2 regression] ICE in ia64_expand_move, at config/ia64/ia64.c:1088

2006-09-15 Thread wilson at gcc dot gnu dot org
--- Comment #17 from wilson at gcc dot gnu dot org 2006-09-15 23:05 --- Subject: Bug 28490 Author: wilson Date: Fri Sep 15 23:05:40 2006 New Revision: 116983 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116983 Log: Short term fix for PR 28490. * config/ia64/ia64.c (ia64_legiti

[Bug c++/29087] [4.1/4.2 Regression] More than 35000 switch cases crash cc1plus

2006-09-15 Thread steven at gcc dot gnu dot org
--- Comment #6 from steven at gcc dot gnu dot org 2006-09-15 23:48 --- Created an attachment (id=12281) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12281&action=view) Alternative patch (less obviously safe) This one should resolve the problem completely by not recursing with cal

[Bug c/2707] gcc does not warn on truncate

2006-09-15 Thread lopezibanez at gmail dot com
--- Comment #6 from lopezibanez at gmail dot com 2006-09-16 00:31 --- By using the patches of the Wcoercion project [*] and compiling with -Wcoercion, gcc reports for the testcase mentioned in the description: pr2707.c: In function 'main': pr2707.c:8: warning: coercion to 'short unsigne

[Bug target/28516] [4.2 regression] arm_unwind_emit_set, at config/arm/arm.c:15419 with -fexceptions

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

[Bug c++/26167] -Wconversion fails to detect signedness conversion from int to unsigned int in fuction call

2006-09-15 Thread lopezibanez at gmail dot com
--- Comment #6 from lopezibanez at gmail dot com 2006-09-16 01:08 --- In which way gcc reports the problem correctly? What gcc currently reports is that if the prototype were missing the value would be passed as a signed int. It is not warning you about the conversion, it warns you about

[Bug libfortran/29101] memory leak in libgfortran

2006-09-15 Thread jvdelisle at gcc dot gnu dot org
--- Comment #1 from jvdelisle at gcc dot gnu dot org 2006-09-16 01:28 --- Confirmed: As can be seen here. We are allocating, but not freeing pstr.6 { char[1:D.960] * pstr.6; int4 D.960; int4 D.959; char[1:_input] & D.958; static struct _jump_struct jumptable.5[2]

[Bug c++/26298] -Wconversion fails to detect signedness change during widening conversion

2006-09-15 Thread lopezibanez at gmail dot com
--- Comment #2 from lopezibanez at gmail dot com 2006-09-16 01:38 --- Richard, could you tell which bug report do you mean? The -Wconversion warnings does not apply to this case. Wconversion warns about the effect of adding a prototype, not about sign conversions. Anyway, I still don'

[Bug c++/26698] g++ accepts const-incorrect code due to conversion function

2006-09-15 Thread lopezibanez at gmail dot com
--- Comment #3 from lopezibanez at gmail dot com 2006-09-16 01:48 --- When using -Wconverson: pr26698.cpp:24: warning: conversion to a reference to the same type will never use a type conversion operator Maybe this warning should be reported always? -- lopezibanez at gmail dot com

[Bug target/28490] [4.0/4.1 regression] ICE in ia64_expand_move, at config/ia64/ia64.c:1088

2006-09-15 Thread pinskia at gcc dot gnu dot org
--- Comment #18 from pinskia at gcc dot gnu dot org 2006-09-16 02:46 --- worked around for 4.2.0 so no longer a regression. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug libstdc++/29104] New: [GCC 4.1.1] /usr/bin/ld: BFD 2.15.92.0.2 20040927 internal error

2006-09-15 Thread ssarangan at sharpcast dot com
The following error occurs when linking libstdc++.so: /bin/sh ../libtool --tag CXX --mode=link /opt/gcc/gcc-4.1.1-obj/./gcc/xgcc -shared-libgcc -B/opt/gcc/gcc-4.1.1-obj/./gcc -nostdinc++ -L/opt/gcc/gcc-4.1.1-obj/x86_64-unknown-linux-gnu/libstdc++-v3/src -L/opt/gcc/gcc-4.1.1-obj/x86_64-unknown-linu

[Bug libstdc++/29104] [GCC 4.1.1] /usr/bin/ld: BFD 2.15.92.0.2 20040927 internal error

2006-09-15 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-09-16 06:33 --- *** This bug has been marked as a duplicate of 27256 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added --

[Bug libstdc++/27256] gcc 4.1.0 compilation fails on RHEL AS 3 (x86_64)

2006-09-15 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-09-16 06:33 --- *** Bug 29104 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug bootstrap/28066] cannot bootstrap x86_64 gcc 4.1.1 from gcc 3.4.5

2006-09-15 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-09-16 06:33 --- Reopening to ... -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status

[Bug bootstrap/28066] cannot bootstrap x86_64 gcc 4.1.1 from gcc 3.4.5

2006-09-15 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-09-16 06:33 --- as a duplication of bug 27256. *** This bug has been marked as a duplicate of 27256 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug libstdc++/27256] gcc 4.1.0 compilation fails on RHEL AS 3 (x86_64)

2006-09-15 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2006-09-16 06:33 --- *** Bug 28066 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug c++/28381] compile of gcc 4.1.1 fails on x86_64 using gcc 3.4.5

2006-09-15 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-09-16 06:34 --- Reopening to ... -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status

[Bug c++/28381] compile of gcc 4.1.1 fails on x86_64 using gcc 3.4.5

2006-09-15 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-09-16 06:34 --- Mark as a dup of bug 27256. *** This bug has been marked as a duplicate of 27256 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug libstdc++/27256] gcc 4.1.0 compilation fails on RHEL AS 3 (x86_64)

2006-09-15 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2006-09-16 06:34 --- *** Bug 28381 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug bootstrap/28745] make bootstrap failed on rhel4-x64 with ld internal error at elf64-x86-64.c line 1912

2006-09-15 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-09-16 06:35 --- Reopening to ... -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status

[Bug bootstrap/28745] make bootstrap failed on rhel4-x64 with ld internal error at elf64-x86-64.c line 1912

2006-09-15 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2006-09-16 06:35 --- Mark as a duplication of bug 27256. *** This bug has been marked as a duplicate of 27256 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug libstdc++/27256] gcc 4.1.0 compilation fails on RHEL AS 3 (x86_64)

2006-09-15 Thread pinskia at gcc dot gnu dot org
--- Comment #7 from pinskia at gcc dot gnu dot org 2006-09-16 06:35 --- *** Bug 28745 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---