[Bug rtl-optimization/7061] Alpha: Access of bytes in struct parameters

2005-11-02 Thread rth at gcc dot gnu dot org
--- Comment #4 from rth at gcc dot gnu dot org 2005-11-02 08:06 --- Still present in 4.1. As a guess, we're creating a BLKmode register (because alignof(struct s1) is less than alignof(HImode)), and assign_parm_setup_block forces the data into the stack. It's possible this can be

[Bug rtl-optimization/7061] Access of bytes in struct parameters

2005-11-02 Thread rth at gcc dot gnu dot org
--- Comment #5 from rth at gcc dot gnu dot org 2005-11-02 08:09 --- And there is nothing Alpha specific about this. Any target which passes structures in registers can show it. For instance, ia64: f1: .prologue .body .mmi st2 [r12] = r32 nop 0

[Bug middle-end/24612] [gomp] Bogus is used uninitialized warning

2005-11-02 Thread jakub at gcc dot gnu dot org
--- Comment #1 from jakub at gcc dot gnu dot org 2005-11-02 08:23 --- That testcase is IMHO invalid (see http://gcc.gnu.org/ml/gcc-patches/2005-11/msg00099.html ), but void foo (void) { int i; #pragma omp parallel sections shared (i) { #pragma omp section { i = 0;

[Bug c++/24613] [gomp] ICE on unexpected #pragma omp section

2005-11-02 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |jakub at gcc dot gnu dot org |dot org

[Bug c++/24629] Can't use template argument as friend

2005-11-02 Thread giovannibajo at libero dot it
--- Comment #2 from giovannibajo at libero dot it 2005-11-02 09:20 --- Template parameters can't be used in friend declarations (nor in any elaborated type specifier construct). -- giovannibajo at libero dot it changed: What|Removed |Added

[Bug target/24610] The comment start symbol of arm target

2005-11-02 Thread rearnsha at gcc dot gnu dot org
--- Comment #3 from rearnsha at gcc dot gnu dot org 2005-11-02 10:13 --- ../.././gcc/config/arm/lib1funcs.asm:731: Error: no such instruction: `moveq pc,lr' This just shows that you aren't picking up an ARM assembler. Have you installed GAS correctly? and does the compiler know

[Bug libstdc++/23425] vector::clear should be manually inlined

2005-11-02 Thread pcarlini at suse dot de
--- Comment #5 from pcarlini at suse dot de 2005-11-02 10:29 --- Fixed for 4.1.0. -- pcarlini at suse dot de changed: What|Removed |Added Status|NEW

[Bug libstdc++/23425] vector::clear should be manually inlined

2005-11-02 Thread pcarlini at suse dot de
-- pcarlini at suse dot de changed: What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23425

[Bug fortran/24633] New: MODULE attribute conflicts with PROCEDURE attribute

2005-11-02 Thread anglade at gmail dot com
MODULE attribute conflicts with PROCEDURE attribute this error message is not accurate enough. The conflicting attribute should be mentionned. For instance in: module abc contain function abc() The conflicting attributes is the name of the module and the name of the function. this is

[Bug libgcj/24616] linking BC-compiled classes: NoClassDefFoundErrors should be deferred

2005-11-02 Thread thebohemian at gmx dot net
--- Comment #3 from thebohemian at gmx dot net 2005-11-02 11:09 --- Created an attachment (id=10113) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10113action=view) lazy linker test setup This is a newer version of the test for class linking. The change is that the actual tests

[Bug c/18624] GCC does not detect local variable set but never used

2005-11-02 Thread alexander_herrmann at yahoo dot com dot au
--- Comment #8 from alexander_herrmann at yahoo dot com dot au 2005-11-02 11:29 --- I guessed somebody found it before but searching the db I couldn'n find it. Anyway shouldn't we make it than dependend or blocking Bug #tree-optimization/21513 As the funktion while C correct will never

[Bug fortran/22495] Different ideas about .true. and .false.

2005-11-02 Thread tobi at gcc dot gnu dot org
--- Comment #4 from tobi at gcc dot gnu dot org 2005-11-02 12:37 --- I was curious, and tried below patch, changing .EQV. to .NEQV. in the testcase, and still we don't get the right result, since our logical type is a real logical, in that only the lowest bit is considered. I did some

[Bug c/24634] New: DW_AT_high_pc and DW_AT_low_pc zero in DWARF-2 debug info in object file in 64bit world

2005-11-02 Thread mlynarik at decef dot elf dot stuba dot sk
We are using a cross compiler for 64 bit Linux on MIPS yosemite. When we compile c sources with command: mips64-linux-gnu-gcc -c -gdwarf-2 -mabi=64 xxx.c then the value of atribute in dwarf2 info : DW_AT_high_pc and DW_AT_low_pc is 0 what is surely wrong for mips64-linux-gnu-gcc -c -gdwarf-2

[Bug libfortran/24459] gfortran namelist problem

2005-11-02 Thread ed at eh3 dot com
--- Comment #6 from ed at eh3 dot com 2005-11-02 13:12 --- Hi jvdelisle, I'm not sure if it qualifies as high priority but it is one of the few (only?) gfortran bugs that we've encountered with the MITgcm fluid flow and transport model (http://mitgcm.org). If it helps, I'll be happy

[Bug fortran/24633] MODULE attribute conflicts with PROCEDURE attribute

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-11-02 13:15 --- Full testcase: module abc contains function abc() i=1 end function end module There is actually two problems here, the first is the message about the conflicts is not very clear. The second issue is that the

[Bug fortran/24633] MODULE attribute conflicts with PROCEDURE attribute

2005-11-02 Thread anglade at gmail dot com
--- Comment #2 from anglade at gmail dot com 2005-11-02 13:28 --- (In reply to comment #1) Full testcase: module abc contains function abc() i=1 end function end module There is actually two problems here, the first is the message about the conflicts is not very clear. The

[Bug c/24635] New: Wrong statement reordering

2005-11-02 Thread worm at arrakis dot es
/* * Summary: * Wrong statement reordering * Description: * If you run this program, it will produce an output of 1. * The reason is that the assignment V1=0 which should be * executed before the call to cl_throw() is moved after * this call, and hence when

[Bug c++/24613] [gomp] ICE on unexpected #pragma omp section

2005-11-02 Thread jakub at gcc dot gnu dot org
--- Comment #1 from jakub at gcc dot gnu dot org 2005-11-02 13:59 --- Subject: Bug 24613 Author: jakub Date: Wed Nov 2 13:59:00 2005 New Revision: 106383 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=106383 Log: PR c++/24613 * c-parser.c (c_parser_pragma):

[Bug c++/24613] [gomp] ICE on unexpected #pragma omp section

2005-11-02 Thread jakub at gcc dot gnu dot org
--- Comment #2 from jakub at gcc dot gnu dot org 2005-11-02 14:03 --- Fixed on the branch. -- jakub at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/24636] New: gfortran: STOP without stop-code too noisy, regression w.r.t. g77

2005-11-02 Thread anlauf at gmx dot de
Hi, as it has bothered me for quite some time, I finally decided to report. The program program gfcbug29 stop end when compiled with g77, executes and terminates without any message. *Only* when a stop code is present, as in stop 0 it (the g77 runtime) says so.

Re: [Bug middle-end/23181] [4.1 Regression] Slowdown of the bresenham line drawing by roughly 20%

2005-11-02 Thread Jan Hubicka
--- Comment #13 from law at redhat dot com 2005-10-31 23:36 --- Subject: Re: [4.1 Regression] Slowdown of the bresenham line drawing by roughly 20% On Mon, 2005-10-31 at 23:25 +, hubicka at ucw dot cz wrote: See comment #5. The fact that we ended up with more

[Bug middle-end/23181] [4.1 Regression] Slowdown of the bresenham line drawing by roughly 20%

2005-11-02 Thread hubicka at ucw dot cz
--- Comment #15 from hubicka at ucw dot cz 2005-11-02 14:32 --- Subject: Re: [4.1 Regression] Slowdown of the bresenham line drawing by roughly 20% --- Comment #13 from law at redhat dot com 2005-10-31 23:36 --- Subject: Re: [4.1 Regression] Slowdown of the

[Bug c/24635] Wrong statement reordering

2005-11-02 Thread rguenth at gcc dot gnu dot org
--- Comment #1 from rguenth at gcc dot gnu dot org 2005-11-02 14:51 --- I cannot reproduce this on 4.0.1 or CVS HEAD of 4.0 (20050919), nor on 4.1.0. What optimization options did you use? -- rguenth at gcc dot gnu dot org changed: What|Removed

[Bug c/24635] Wrong statement reordering

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-11-02 14:55 --- I cannot reproduce this with the compiler version you have. GNU C version 4.0.2 20050808 (prerelease) (Ubuntu 4.0.1-4ubuntu9) (x86_64-linux-gnu) -- pinskia at gcc dot gnu dot org changed: What

[Bug middle-end/24635] Wrong statement reordering

2005-11-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 fortran/24636] gfortran: STOP without stop-code too noisy, regression w.r.t. g77

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-11-02 14:59 --- Confirmed, this is more of a front-end issue than a library issue. As the front-end emits a call to _gfortran_stop_numeric in both the STOP cases. -- pinskia at gcc dot gnu dot org changed: What

[Bug c++/24628] const-over-non-const identification fails

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-11-02 15:05 --- And works in 4.0.3 but not in 3.4.5 and 3.4.0. Closing as fixed for 4.0.3 since this was not a regression. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug testsuite/24614] gcc.dg/nested-func-4.c (test for excess errors) fails

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-11-02 15:14 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug debug/24634] DW_AT_high_pc and DW_AT_low_pc zero in DWARF-2 debug info in object file in 64bit world

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-11-02 15:19 --- Are you sure that there are no relocations and that it is zero because of them? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24634

[Bug middle-end/24627] [4.1 Regression] xntp miscompiled

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #10 from pinskia at gcc dot gnu dot org 2005-11-02 15:47 --- Here is a further reduced testase: typedef struct { union {unsigned Xl_ui;} Ul_i; union {unsigned Xl_uf;} Ul_f; } l_fp; void dolfptoa(short ndec) { l_fp work; work.Ul_f.Xl_uf = 0x535f3d8; while (ndec 0)

[Bug middle-end/24627] [4.1 Regression] xntp miscompiled

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #11 from pinskia at gcc dot gnu dot org 2005-11-02 15:53 --- The following fails with -O1 -fno-tree-sra. typedef struct { struct {unsigned Xl_ui;} Ul_i; struct {unsigned Xl_uf;} Ul_f; } l_fp; void dolfptoa(short ndec) { l_fp work; work.Ul_f.Xl_uf = 0x535f3d8;

[Bug middle-end/24627] [4.1 Regression] xntp miscompiled

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #12 from pinskia at gcc dot gnu dot org 2005-11-02 16:03 --- Here is another more reduced testcase (still at -O1 -fno-tree-sra): typedef struct { unsigned a; } l_fp; void dolfptoa(short ndec) { l_fp work; unsigned workUl_fXl_uf; work.a = 0x535f3d8; while (ndec 0)

[Bug middle-end/24627] [4.1 Regression] xntp miscompiled

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #13 from pinskia at gcc dot gnu dot org 2005-11-02 16:12 --- (In reply to comment #12) Here is another more reduced testcase (still at -O1 -fno-tree-sra): That testcase is invalid, the one which is valid: ypedef struct { unsigned a; } l_fp; void dolfptoa(short ndec) {

[Bug target/24600] [4.1 Regression] unrecognizable instruction

2005-11-02 Thread uweigand at gcc dot gnu dot org
--- Comment #6 from uweigand at gcc dot gnu dot org 2005-11-02 16:22 --- Tested patch in: http://gcc.gnu.org/ml/gcc-patches/2005-11/msg00113.html -- uweigand at gcc dot gnu dot org changed: What|Removed |Added

[Bug libgcj/24637] New: static and non-static declarations of missing type do not pass the verifier

2005-11-02 Thread thebohemian at gmx dot net
public class Foo { static MissingClass STATIC_MIA; } public class Foo2{ MissingClass NONSTATIC_MIA; } Foo and Foo2 should pass the verifier if the bytecode for MissingClass is absent. -- Summary: static and non-static declarations of missing type do not

[Bug libstdc++/23425] vector::clear should be manually inlined

2005-11-02 Thread paolo at gcc dot gnu dot org
--- Comment #6 from paolo at gcc dot gnu dot org 2005-11-02 16:24 --- Subject: Bug 23425 Author: paolo Date: Wed Nov 2 10:27:54 2005 New Revision: 106379 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=106379 Log: 2005-11-02 Thomas Kho [EMAIL PROTECTED] PR

[Bug target/24615] [4.1 Regression] internal compiler error: in print_shift_count_operand, at config/s390/s390.c:4025

2005-11-02 Thread uweigand at gcc dot gnu dot org
--- Comment #5 from uweigand at gcc dot gnu dot org 2005-11-02 16:32 --- Confirmed. Looks like a backend problem, I'm working on it. -- uweigand at gcc dot gnu dot org changed: What|Removed |Added

[Bug libgcj/24638] New: inconsistent use of Jv_FindClass causing too weak error condition

2005-11-02 Thread thebohemian at gmx dot net
Jv_FindClass throws a ClassNotFoundException in case the requested class cannot be resolved (regardless of whether the bytecode missing or a further dependency cannot be resolved). This causes problems because in case of serious bytecode errors (eg. the class of a field is missing) where a

[Bug middle-end/24627] [4.1 Regression] xntp miscompiled

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #14 from pinskia at gcc dot gnu dot org 2005-11-02 16:39 --- This is as far as I can reduce it, -O1: typedef union { unsigned a; } l_fp; int main(void) { l_fp work; unsigned workUl_fXl_uf = 0x; int ndec = 10; do { ndec--; work.a = 0; work.a =

[Bug middle-end/24627] [4.1 Regression] xntp miscompiled

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #15 from pinskia at gcc dot gnu dot org 2005-11-02 17:02 --- A link to the changes (so I can be a little lazy): http://gcc.gnu.org/viewcvs?view=revrev=101841 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24627

[Bug tree-optimization/24365] [4.1 Regression] statement makes a memory store with complex

2005-11-02 Thread janis at gcc dot gnu dot org
--- Comment #9 from janis at gcc dot gnu dot org 2005-11-02 17:15 --- A regression hunt on powerpc-linux identified this patch: r100793 | rth | 2005-06-09 07:43:40 + (Thu, 09 Jun 2005) | 38 lines PR tree-opt/20610 -- janis at gcc dot gnu dot org changed:

[Bug target/18900] ppc optimization non removable

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-11-02 17:16 --- All P1 enhancements not targeted towards 4.1, moving to P5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/23605] memset() Optimization on x86-32 bit

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #16 from pinskia at gcc dot gnu dot org 2005-11-02 17:16 --- All P1 enhancements not targeted towards 4.1, moving to P5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug preprocessor/23479] Implement binary constants with a 0b prefix

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #15 from pinskia at gcc dot gnu dot org 2005-11-02 17:16 --- All P1 enhancements not targeted towards 4.1, moving to P5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/16797] Opportunity to remove unnecessary load instructions

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #8 from pinskia at gcc dot gnu dot org 2005-11-02 17:16 --- All P1 enhancements not targeted towards 4.1, moving to P5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/17106] Opportunity to eliminate loads from TOC.

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-11-02 17:16 --- All P1 enhancements not targeted towards 4.1, moving to P5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/18584] --std=f would be nice

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2005-11-02 17:16 --- All P1 enhancements not targeted towards 4.1, moving to P5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/16458] PowerPC - redundant compare

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2005-11-02 17:16 --- All P1 enhancements not targeted towards 4.1, moving to P5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/17108] Missed opportunity for strength reduction

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2005-11-02 17:16 --- All P1 enhancements not targeted towards 4.1, moving to P5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/16798] PowerPC - Opportunity to use recording form instruction.

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-11-02 17:16 --- All P1 enhancements not targeted towards 4.1, moving to P5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug java/18585] uniform passing of the classpath parameter

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2005-11-02 17:16 --- All P1 enhancements not targeted towards 4.1, moving to P5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug rtl-optimization/16796] PowerPC - Unnecessary Floating Point Register Copy

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #7 from pinskia at gcc dot gnu dot org 2005-11-02 17:16 --- All P1 enhancements not targeted towards 4.1, moving to P5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug rtl-optimization/16803] PowerPC - invariant code motion could be removed from loop.

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #15 from pinskia at gcc dot gnu dot org 2005-11-02 17:16 --- All P1 enhancements not targeted towards 4.1, moving to P5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug rtl-optimization/16456] PowerPC - redundant subtract involving pointer types

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-11-02 17:16 --- All P1 enhancements not targeted towards 4.1, moving to P5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/23815] Add -byteswapio flag

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #8 from pinskia at gcc dot gnu dot org 2005-11-02 17:16 --- All P1 enhancements not targeted towards 4.1, moving to P5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/17593] Over Aggressive Speculative Code Motion

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-11-02 17:16 --- All P1 enhancements not targeted towards 4.1, moving to P5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug rtl-optimization/23726] Missed optimizations for divmod

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #7 from pinskia at gcc dot gnu dot org 2005-11-02 17:16 --- All P1 enhancements not targeted towards 4.1, moving to P5. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug bootstrap/23101] Make Bootstrap fails on AIX 5.2 ML6

2005-11-02 Thread elizabeth dot brosch at thomson dot com
--- Comment #7 from elizabeth dot brosch at thomson dot com 2005-11-02 17:21 --- Subject: RE: Make Bootstrap fails on AIX 5.2 ML6 I agree. I realized that this was unnecessary. Thanks for the reply. --- Comment #6 from pinskia at gcc dot gnu dot org 2005-10-30 17:17 ---

[Bug middle-end/24462] [4.1 Regression] packed-aligned structures are laid out differently

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2005-11-02 17:41 --- Hmm, I would almost want to go on a limb and say this was caused by the patch for PR 21166. Can you try to revert that patch and try the mainline compiler? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24462

[Bug middle-end/24462] [4.1 Regression] packed-aligned structures are laid out differently

2005-11-02 Thread ebotcazou at gcc dot gnu dot org
--- Comment #7 from ebotcazou at gcc dot gnu dot org 2005-11-02 17:54 --- Hmm, I would almost want to go on a limb and say this was caused by the patch for PR 21166. Can you try to revert that patch and try the mainline compiler? Of course that's it. Thanks for spotting this! --

[Bug fortran/23815] Add -byteswapio flag

2005-11-02 Thread rrr6399 at futuretek dot com
--- Comment #9 from rrr6399 at futuretek dot com 2005-11-02 18:17 --- I imagine code from g95 could be leveraged to support this feature couldn't it? This is a really important feature, especially in corporate environments where there is usually mix of big-endian and little-endian

[Bug target/24178] [4.0/4.1 regression] generates code that produces unaligned access exceptions

2005-11-02 Thread rth at gcc dot gnu dot org
--- Comment #11 from rth at gcc dot gnu dot org 2005-11-02 18:20 --- Subject: Bug 24178 Author: rth Date: Wed Nov 2 18:20:07 2005 New Revision: 106388 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=106388 Log: PR target/24178 * config/alpha/alpha.c

[Bug fortran/24636] gfortran: STOP without stop-code too noisy, regression w.r.t. g77

2005-11-02 Thread kargl at gcc dot gnu dot org
--- Comment #2 from kargl at gcc dot gnu dot org 2005-11-02 18:27 --- This has bugged me also. For a patch, see http://gcc.gnu.org/ml/gcc-patches/2005-11/msg00122.html -- kargl at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/24569] [4.0/4.1 regression] ICE in add_AT_specification, at dwarf2out.c:4966

2005-11-02 Thread mmitchel at gcc dot gnu dot org
--- Comment #6 from mmitchel at gcc dot gnu dot org 2005-11-02 18:30 --- Subject: Bug 24569 Author: mmitchel Date: Wed Nov 2 18:30:26 2005 New Revision: 106392 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=106392 Log: PR c++/24569 * pt.c (instantiate_decl): Use

[Bug c++/24569] [4.0/4.1 regression] ICE in add_AT_specification, at dwarf2out.c:4966

2005-11-02 Thread mmitchel at gcc dot gnu dot org
--- Comment #7 from mmitchel at gcc dot gnu dot org 2005-11-02 18:32 --- Subject: Bug 24569 Author: mmitchel Date: Wed Nov 2 18:32:09 2005 New Revision: 106393 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=106393 Log: PR c++/24569 * pt.c (instantiate_decl): Use

[Bug c++/24569] [4.0/4.1 regression] ICE in add_AT_specification, at dwarf2out.c:4966

2005-11-02 Thread mmitchel at gcc dot gnu dot org
--- Comment #8 from mmitchel at gcc dot gnu dot org 2005-11-02 18:36 --- Fixed in 4.0.3. -- mmitchel at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/24639] New: [meta-bug] bug to track all uninit variable issues

2005-11-02 Thread pinskia at gcc dot gnu dot org
To get a better feeling for the issues which have been reported, this meta-bug should get the better feeling for them. -- Summary: [meta-bug] bug to track all uninit variable issues Product: gcc Version: 4.1.0 Status: UNCONFIRMED Keywords:

[Bug middle-end/24639] [meta-bug] bug to track all uninit variable issues

2005-11-02 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added BugsThisDependsOn||5035, 10138, 16865, 17506, |

[Bug middle-end/24639] [meta-bug] bug to track all uninit variable issues

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-11-02 19:00 --- There are at least 19 bugs related to the uninit warnings. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/24639] [meta-bug] bug to track all uninit variable issues

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-11-02 19:01 --- Adding Jeff Law and Diego so they know what the bug numbers are. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/24640] New: ice with invalid label

2005-11-02 Thread uttamp at us dot ibm dot com
$ cat test.f90 10: a=10 end $ gfortran test.f90 In file ice.f90:1 20:a=10 1 Warning: Ignoring bad statement label at (1) ice.f90: In function ‘MAIN__’: ice.f90:1: internal compiler error: Segmentation fault Please submit a full bug report, with preprocessed source if appropriate. See

[Bug middle-end/24639] [meta-bug] bug to track all uninit variable issues

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2005-11-02 19:17 --- Some more, this time closed ones. There are many more. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug target/24621] [4.1 Regression] internal compiler error: in reload_cse_simplify_operands, at postreload.c:393

2005-11-02 Thread janis at gcc dot gnu dot org
--- Comment #2 from janis at gcc dot gnu dot org 2005-11-02 19:18 --- A regression hunt using a cross compiler identified the following patch: r105306 | rth | 2005-10-12 16:29:35 + (Wed, 12 Oct 2005) | 3 lines PR rtl-opt/23324 * cfgexpand.c

[Bug fortran/24641] New: rejecting valid code

2005-11-02 Thread uttamp at us dot ibm dot com
$ cat test_cmt.f90 program test_comments real :: a end program test_comments $ This is a valid code (i think) checked against Lahey's syntax checker, getting rejected by gfortran. $ gfortran test_cmt.f90 In file test_cmt.f90:2 real :: 1 Error: Syntax

[Bug libgcj/24642] New: Failure to produce random values.

2005-11-02 Thread smythe70 at hotmail dot com
The following code should produce random numbers between 0..2^5-1: import java.math.BigInteger; import java.security.SecureRandom; class RndTest { public static void main(String[] args) { SecureRandom rnd = new SecureRandom(); for (int i = 0; i 10; i++)

[Bug middle-end/24627] [4.1 Regression] xntp miscompiled

2005-11-02 Thread dnovillo at gcc dot gnu dot org
--- Comment #16 from dnovillo at gcc dot gnu dot org 2005-11-02 19:40 --- testing patch -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24627

[Bug classpath/24642] Failure to produce random values.

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-11-02 19:43 --- This is related to PR 24481. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/20644] bogus uninitialized warning on unused variable

2005-11-02 Thread h dot b dot furuseth at usit dot uio dot no
--- Comment #4 from h dot b dot furuseth at usit dot uio dot no 2005-11-02 19:52 --- I think I'd appreciate that warning when writing portable code: The warning can be useful if the 1 is replaced with a macro which may or may not expand to 1, or an enum defined in an #ifdef, or an

[Bug c++/20021] warning behavior depends on textual format of literal constant

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2005-11-02 20:01 --- This does not warn for me on the mainline. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20021

[Bug target/24620] [4.1 Regression] internal compiler error: in find_reloads, at reload.c:3730

2005-11-02 Thread uweigand at gcc dot gnu dot org
--- Comment #2 from uweigand at gcc dot gnu dot org 2005-11-02 20:27 --- Clearly a backend bug. Working on it ... -- uweigand at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/24643] New: Unclassifiable statement on character substring concatenation

2005-11-02 Thread toon at moene dot indiv dot nluug dot nl
gfortran issues an Unclassifiable statement error when trying to compile a statement with concatenation of substrings of character variables. -- Summary: Unclassifiable statement on character substring concatenation Product: gcc Version:

[Bug fortran/24643] Unclassifiable statement on character substring concatenation

2005-11-02 Thread toon at moene dot indiv dot nluug dot nl
--- Comment #1 from toon at moene dot indiv dot nluug dot nl 2005-11-02 20:36 --- Created an attachment (id=10114) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10114action=view) Test case for this bug Test case added. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24643

[Bug fortran/24643] Unclassifiable statement on character substring concatenation

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-11-02 20:39 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c/24644] New: gcc-4.1 compiled ppc64 kernels do not boot

2005-11-02 Thread olh at suse dot de
CONFIG_DEBUG_SPINLOCK and adding a few extra printk will show this: Linux version 2.6.14 ([EMAIL PROTECTED]) (gcc version 4.1.0 20051102 (experimental)) #61 SMP Wed Nov 2 19:47:05 UTC 2005 Memory: 495732k/524288k available (5004k kernel code, 27528k reserved, 1340k data, 2394k bss, 380k init

[Bug middle-end/24644] [4.1 Regression] gcc-4.1 compiled ppc64 kernels do not boot

2005-11-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 fortran/24643] Unclassifiable statement on character substring concatenation

2005-11-02 Thread tobi at gcc dot gnu dot org
--- Comment #3 from tobi at gcc dot gnu dot org 2005-11-02 20:42 --- [EMAIL PROTECTED]:~/src/gcc ../gcc/build/gcc/f951 -quiet -fsyntax-only Warning: Reading file 'stdin' as free form. PROGRAM TABLES IMPLICIT CHARACTER*8(Y) YBTABLE=Ylocal(1:2) END [EMAIL

[Bug libstdc++/24645] New: Commonize arithmetic inserters/extractors bodies

2005-11-02 Thread pcarlini at suse dot de
Especially now, after fixing a couple of correctness issues, it's obvious that all the arithmetic inserters/extractors share a common body which should be commonized to templatized _M_insert/_M_extract, in complete analogy with _M_insert_int/_M_extract_int, for example, in the num_put/num_get

[Bug middle-end/24644] [4.1 Regression] gcc-4.1 compiled ppc64 kernels do not boot

2005-11-02 Thread olh at suse dot de
--- Comment #1 from olh at suse dot de 2005-11-02 20:49 --- Created an attachment (id=10115) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10115action=view) PR24644.tar.bz2 buildscripts, preprocessed files, kernel .config and debug patches, bootlog. building with -O1 does not fix

[Bug fortran/18157] ice-on-valid code, pointer to user-defined type, fold-struct.c

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #13 from pinskia at gcc dot gnu dot org 2005-11-02 21:01 --- Subject: Bug 18157 Author: pinskia Date: Wed Nov 2 21:01:54 2005 New Revision: 106396 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=106396 Log: 2005-11-02 Andrew Pinski [EMAIL PROTECTED] PR

[Bug c++/17964] [4.0/4.1 Regression] cpp error messages contain wrong line in C++

2005-11-02 Thread mrs at apple dot com
--- Comment #10 from mrs at apple dot com 2005-11-02 21:04 --- Radar 3843157 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17964

[Bug libfortran/24584] Segfault when reading empty string in namelist file

2005-11-02 Thread tobi at gcc dot gnu dot org
-- tobi at gcc dot gnu dot org changed: What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24584

[Bug fortran/18157] ice-on-valid code, pointer to user-defined type, fold-struct.c

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #14 from pinskia at gcc dot gnu dot org 2005-11-02 21:12 --- Subject: Bug 18157 Author: pinskia Date: Wed Nov 2 21:12:27 2005 New Revision: 106397 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=106397 Log: 2005-11-02 Andrew Pinski [EMAIL PROTECTED] PR

[Bug fortran/18157] ice-on-valid code, pointer to user-defined type, fold-struct.c

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #15 from pinskia at gcc dot gnu dot org 2005-11-02 21:12 --- Fixed in 4.0.3 and above, thanks for your report. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/24643] Unclassifiable statement on implicitly typed character substring

2005-11-02 Thread tkoenig at gcc dot gnu dot org
--- Comment #4 from tkoenig at gcc dot gnu dot org 2005-11-02 21:13 --- g77 groks this: $ cat grg.f PROGRAM TABLES IMPLICIT CHARACTER*8(Y) WRITE(YLOCAL,'(I2.2)') ILOCAL YBTABLE=Ylocal(1:2) END $ g77 grg.f $ -- tkoenig at gcc dot gnu dot org changed:

[Bug fortran/15502] [meta-bug] bugs needed for SPEC CPU 2K and 2K5/6 and 95

2005-11-02 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2005-11-02 21:13 --- Note there are still some more 2k5/6 SPEC blocking bugs which just had not been filed yet. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15502

[Bug fortran/23538] gfortran hangs on old cray fortran 66 program

2005-11-02 Thread tkoenig at gcc dot gnu dot org
--- Comment #7 from tkoenig at gcc dot gnu dot org 2005-11-02 21:17 --- g77 gets confused by the errors, then bails out: $ g77 d2ds.f $ g77 d2ds.f 21 | tail 2 Argument #4 of `maxval' is one type at (2) but is some other type at (1) [info -f g77 M GLOBALS] d2ds.f:831:

[Bug fortran/23815] Add -byteswapio flag

2005-11-02 Thread tkoenig at gcc dot gnu dot org
--- Comment #10 from tkoenig at gcc dot gnu dot org 2005-11-02 21:20 --- (In reply to comment #9) I imagine code from g95 could be leveraged to support this feature couldn't it? Rather not. The libraries have diverged pretty much so it is probably easier to write this from

[Bug fortran/20867] statement function args not given implicit type early enough

2005-11-02 Thread tkoenig at gcc dot gnu dot org
--- Comment #1 from tkoenig at gcc dot gnu dot org 2005-11-02 21:24 --- $ cat foo.f REAL :: st1 st1(I)=I**2 ! I implicitly typed to integer REAL :: I END $ g77 foo.f foo.f: In program `MAIN__': foo.f:2: st1(I)=I**2 ! I

[Bug fortran/24640] ice with invalid label

2005-11-02 Thread tkoenig at gcc dot gnu dot org
--- Comment #1 from tkoenig at gcc dot gnu dot org 2005-11-02 21:28 --- This is only in free-form: $ cat tst.f 10: a=10 end $ gfortran tst.f In file tst.f:1 10: a=10 1 Error: Non-numeric character in statement label at (1) Confirmed. -- tkoenig at gcc dot gnu dot

[Bug c++/19253] [3.4/4.0/4.1 regression] bad error message / ICE for invalid template parameter

2005-11-02 Thread mmitchel at gcc dot gnu dot org
--- Comment #12 from mmitchel at gcc dot gnu dot org 2005-11-02 21:34 --- Subject: Bug 19253 Author: mmitchel Date: Wed Nov 2 21:34:51 2005 New Revision: 106398 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=106398 Log: PR c++/19253 * parser.c

  1   2   >