[Bug tree-optimization/29922] [4.3 Regression] [Linux] ICE in insert_into_preds_of_block

2006-11-27 Thread pinskia at gcc dot gnu dot org
--- Comment #11 from pinskia at gcc dot gnu dot org 2006-11-27 08:06 --- Here is the patch which fixes the PHI issue but I don't know if it will always fix the PRE issue but I think it will as the PRE issue is always with VOPs: Index: tree-ssa-dom.c

[Bug tree-optimization/22372] Vectorizer produces mis-match types

2006-11-27 Thread irar at gcc dot gnu dot org
--- Comment #4 from irar at gcc dot gnu dot org 2006-11-27 08:10 --- Subject: Bug 22372 Author: irar Date: Mon Nov 27 08:10:23 2006 New Revision: 119247 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=119247 Log: PR tree-optimization/22372 * tree-vect-transform.c

[Bug fortran/29951] [4.3 Regression] incorrect conversion from string to integer by TRANSFER()

2006-11-27 Thread kloedej at knmi dot nl
--- Comment #10 from kloedej at knmi dot nl 2006-11-27 08:21 --- thanks for your effort to fix this bug! I can confirm todays binary version, downloaded from http://quatramaran.ens.fr/~coudert/gfortran/gfortran-linux.tar.gz works fine for me. best regards, Jos de kloe --

[Bug libfortran/29568] implement unformatted files with subrecords (Intel style)

2006-11-27 Thread jvdelisle at gcc dot gnu dot org
--- Comment #25 from jvdelisle at gcc dot gnu dot org 2006-11-27 08:24 --- I have successfully completed testing to the extent I can including large numbers of I/O operations and huge records ( 5 gigabyte) and large file (50 gigabyte). All looks Good. I have performance checked

[Bug c++/29991] New: double: conversion to bits

2006-11-27 Thread hans dot buchmann at fhso dot ch
Compiling the Code --- #include iostream #include iomanip typedef long long unsigned Significant; Significant conv(double v) { return *(Significant*)v; } double v=1.0; int main(unsigned argc,char* args[]) { std::cerrstd::hexconv(v)\n; }

[Bug c++/29991] double: conversion to bits

2006-11-27 Thread pluto at agmk dot net
--- Comment #1 from pluto at agmk dot net 2006-11-27 09:07 --- did you ever read the gcc warnings? `-Wall' tells you what's wrong. use -fno-strict-aliasing or memcpy() for such conversions. -- pluto at agmk dot net changed: What|Removed |Added

[Bug fortran/29992] New: INTERFACE equivalent to MODULE PROCEDURE?!

2006-11-27 Thread franke dot daniel at gmail dot com
The following code is accepted by gfortran while ifort rejects it with error messages as quoted below. $ cat foo.f90 MODULE class_foo_type TYPE :: foo INTEGER :: dummy END TYPE END MODULE MODULE class_foo USE class_foo_type, ONLY: foo INTERFACE foo_init MODULE PROCEDURE foo_init_default END

[Bug fortran/29992] INTERFACE equivalent to MODULE PROCEDURE?!

2006-11-27 Thread franke dot daniel at gmail dot com
--- Comment #1 from franke dot daniel at gmail dot com 2006-11-27 09:28 --- (report continued) $ cat foo2.f90 MODULE class_foo_type TYPE :: foo INTEGER :: dummy END TYPE END MODULE MODULE class_foo USE class_foo_type, ONLY: foo INTERFACE foo_init SUBROUTINE

[Bug c++/29991] double: conversion to bits

2006-11-27 Thread schwab at suse dot de
--- Comment #2 from schwab at suse dot de 2006-11-27 09:51 --- *** This bug has been marked as a duplicate of 21920 *** -- schwab at suse dot de changed: What|Removed |Added

[Bug c/21920] alias violating

2006-11-27 Thread schwab at suse dot de
--- Comment #108 from schwab at suse dot de 2006-11-27 09:51 --- *** Bug 29991 has been marked as a duplicate of this bug. *** -- schwab at suse dot de changed: What|Removed |Added

[Bug fortran/29962] Initialization expressions checking in gfc_intrinsic_func_interface

2006-11-27 Thread patchapp at dberlin dot org
--- Comment #5 from patchapp at dberlin dot org 2006-11-27 10:15 --- Subject: Bug number PR29962 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-11/msg01799.html --

[Bug c++/29993] New: typdef declaration of cv-qualified function in class

2006-11-27 Thread s__nakayama at infoseek dot jp
gcc rejects following valid code. class bar { typedef int func_type() const; }; -- Summary: typdef declaration of cv-qualified function in class Product: gcc Version: 4.1.1 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug tree-optimization/22372] Vectorizer produces mis-match types

2006-11-27 Thread irar at il dot ibm dot com
--- Comment #5 from irar at il dot ibm dot com 2006-11-27 11:19 --- The patch I committed (comment #4) fixes almost all the type mismatch occurrences in the vectorizer, but there's one occurrence that still remains - one of the vectorizer testcases (vect-reduc-dot-u8b.c) still fails

[Bug middle-end/25620] Missed optimization with power

2006-11-27 Thread rguenth at gcc dot gnu dot org
--- Comment #14 from rguenth at gcc dot gnu dot org 2006-11-27 11:38 --- Subject: Bug 25620 Author: rguenth Date: Mon Nov 27 11:38:42 2006 New Revision: 119248 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=119248 Log: 2006-11-27 Richard Guenther [EMAIL PROTECTED] PR

[Bug fortran/25620] Missed optimization with power

2006-11-27 Thread rguenth at gcc dot gnu dot org
--- Comment #15 from rguenth at gcc dot gnu dot org 2006-11-27 11:52 --- Fixed (partly) on the mainline. We can now expand pow (x, n/2) and pow (x, n/3) properly using sqrt and/or cbrt, but cbrt is not available from the fortran frontend (it misses to define __builtin_cbrt). --

[Bug tree-optimization/28544] [4.2/4.3 regression] ICE in add_virtual_operand, at tree-ssa-operands.c:1309

2006-11-27 Thread bero at arklinux dot org
--- Comment #14 from bero at arklinux dot org 2006-11-27 12:58 --- Created an attachment (id=12700) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12700action=view) Different code triggering the same error Different code extracted from dirac, triggering the same error (goes away

[Bug tree-optimization/29718] [4.2/4.3 Regression] ice in add_virtual_operand with some C++ code

2006-11-27 Thread bero at arklinux dot org
--- Comment #4 from bero at arklinux dot org 2006-11-27 12:59 --- Might be a dup of bug 28544 -- bero at arklinux dot org changed: What|Removed |Added

[Bug fortran/29992] INTERFACE equivalent to MODULE PROCEDURE?!

2006-11-27 Thread burnus at gcc dot gnu dot org
--- Comment #2 from burnus at gcc dot gnu dot org 2006-11-27 13:02 --- Confirm. Currently, the two interfaces clash: MODULE PROCEDURE foo_init_default SUBROUTINE foo_init_default(this) The latter needs to be containsed in the module not put into an interface. * * * Error message

[Bug tree-optimization/28544] [4.2/4.3 regression] ICE in add_virtual_operand, at tree-ssa-operands.c:1309

2006-11-27 Thread dberlin at dberlin dot org
--- Comment #15 from dberlin at gcc dot gnu dot org 2006-11-27 13:54 --- Subject: Re: [4.2 regression] ICE in add_virtual_operand, at tree-ssa-operands.c:1309 I assume the attached fixes this? On 15 Oct 2006 09:01:42 -, tbm at cyrius dot com [EMAIL PROTECTED] wrote: ---

[Bug c/29994] New: __STRICT_ANSI__ meaning incorrectly documented

2006-11-27 Thread bruno at clisp dot org
What does __STRICT_ANSI__ mean in C (not C++) mode? The doc says: The macro `__STRICT_ANSI__' is predefined when the `-ansi' option is used. I.e. when the compiler is implementing strict ISO C90. But it is also defined when the compiler is implementing strict ISO C99. $ touch empty.c $ gcc

[Bug tree-optimization/29921] [4.3 regression]: internal compiler error: in set_lattice_value, at tree-ssa-ccp.c:437

2006-11-27 Thread hjl at lucon dot org
--- Comment #12 from hjl at lucon dot org 2006-11-27 14:58 --- This patch http://gcc.gnu.org/ml/gcc-patches/2006-11/msg01608.html works for me. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29921

[Bug fortran/20441] -finit-local-zero is missing from gfortran

2006-11-27 Thread burnus at gcc dot gnu dot org
--- Comment #5 from burnus at gcc dot gnu dot org 2006-11-27 16:02 --- Besides zero initialization [...] a initialization to a (signaling) NaN (for complex, real) would be also nice to find uninitialized variables. Why use -Wuninitialize will warn about those cases (though it

[Bug target/29995] New: sh-elf: precompiled headers won't match

2006-11-27 Thread amylaar at gcc dot gnu dot org
The encoded information about machine-specific options with default values (e.g -mdiv=...) is wrong, causing spurious header mismatches. (Note : I have set the component to 'target' instead of 'pch' because I think this can probably be fixed by adjusting the pch target hooks.) We should also

[Bug target/29996] New: sh-elf: should enable -fomit-frame-pointer

2006-11-27 Thread amylaar at gcc dot gnu dot org
-fomit-frame-pointer should be enabled by setting CAN_DEBUG_WITHOUT_FP, but only after thorough testing for every multilib that that debugging is not impeded, and that average benchmark scores are indeed improved. -- Summary: sh-elf: should enable -fomit-frame-pointer

[Bug c/29994] __STRICT_ANSI__ meaning incorrectly documented

2006-11-27 Thread joseph at codesourcery dot com
--- Comment #1 from joseph at codesourcery dot com 2006-11-27 16:16 --- Subject: Re: New: __STRICT_ANSI__ meaning incorrectly documented On Mon, 27 Nov 2006, bruno at clisp dot org wrote: What does __STRICT_ANSI__ mean in C (not C++) mode? The doc says: The macro

[Bug target/29319] ICE unrecognizable insn: offset too large for larl (breaks glibc)

2006-11-27 Thread krebbel at gcc dot gnu dot org
-27 Michael Matz [EMAIL PROTECTED] Andreas Krebbel [EMAIL PROTECTED] PR target/29319 * gcc.dg/20061127-1.c: New testcase. Added: branches/gcc-4_1-branch/gcc/testsuite/gcc.dg/20061127-1.c Modified: branches/gcc-4_1-branch/gcc/ChangeLog branches/gcc-4_1

[Bug target/29319] ICE unrecognizable insn: offset too large for larl (breaks glibc)

2006-11-27 Thread krebbel at gcc dot gnu dot org
-27 Michael Matz [EMAIL PROTECTED] Andreas Krebbel [EMAIL PROTECTED] PR target/29319 * gcc.dg/20061127-1.c: New testcase. Added: branches/gcc-4_2-branch/gcc/testsuite/gcc.dg/20061127-1.c Modified: branches/gcc-4_2-branch/gcc/ChangeLog branches/gcc-4_2

[Bug target/29997] New: various targets: GCC fails to encode epilogues in unwind-info

2006-11-27 Thread amylaar at gcc dot gnu dot org
See the discussion started with this message: http://gcc.gnu.org/ml/gcc/2005-10/msg00808.html According to Jim Wilson in http://gcc.gnu.org/ml/gcc/2005-10/msg00858.html, we now have the infrastructure to properly encode prologues / epilogues. The ia64 port is using this. -- Summary:

[Bug target/29319] ICE unrecognizable insn: offset too large for larl (breaks glibc)

2006-11-27 Thread krebbel at gcc dot gnu dot org
-27 Michael Matz [EMAIL PROTECTED] Andreas Krebbel [EMAIL PROTECTED] PR target/29319 * gcc.dg/20061127-1.c: New testcase. Added: trunk/gcc/testsuite/gcc.dg/20061127-1.c Modified: trunk/gcc/ChangeLog trunk/gcc/config/s390/predicates.md trunk/gcc

[Bug target/29998] New: sh-elf: GCC fails to encode epilogues in unwind-info

2006-11-27 Thread amylaar at gcc dot gnu dot org
The sh port does not encode information about epilogues in the unwind info. See PR target/29997 for context. In addition to adding saving / restoring state around epilogues, the current measures to prevent unwind info for epilogues to be emitted must be reverted: output_stack_adjust: set emit_fn

[Bug fortran/20441] -finit-local-zero is missing from gfortran

2006-11-27 Thread pinskia at gcc dot gnu dot org
--- Comment #6 from pinskia at gcc dot gnu dot org 2006-11-27 16:47 --- (In reply to comment #5) Besides zero initialization [...] a initialization to a (signaling) NaN (for complex, real) would be also nice to find uninitialized variables. Why use -Wuninitialize will

[Bug fortran/25620] Missed optimization with power

2006-11-27 Thread jv244 at cam dot ac dot uk
--- Comment #16 from jv244 at cam dot ac dot uk 2006-11-27 16:49 --- (In reply to comment #15) Fixed (partly) on the mainline. We can now expand pow (x, n/2) and pow (x, n/3) properly using sqrt and/or cbrt, but cbrt is not available from the fortran frontend (it misses to define

[Bug c/29994] __STRICT_ANSI__ meaning incorrectly documented

2006-11-27 Thread bruno at clisp dot org
--- Comment #2 from bruno at clisp dot org 2006-11-27 16:50 --- You're right, it's well documented in cpp.info. I looked only in gcc.info. -- bruno at clisp dot org changed: What|Removed |Added

[Bug c/29999] New: preprocessor documentation is missing from gcc.info

2006-11-27 Thread bruno at clisp dot org
A user that uses info gcc to look for details about the preprocessor doesn't find them. Example: [Bug c/29994]. The user did info gcc, was looking for a section that explains all the predefined preprocessor macros, but didn't find it. The reason was that they are in a separate manual. Nowadays

[Bug tree-optimization/29718] [4.2/4.3 Regression] ice in add_virtual_operand with some C++ code

2006-11-27 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2006-11-27 16:59 --- (In reply to comment #4) Might be a dup of bug 28544 No because 28544 violates the alias rules while this one does not. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29718

[Bug other/29999] preprocessor documentation is missing from gcc.info

2006-11-27 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-11-27 17:06 --- I don't see why it has to be part of the GCC manual. This is like saying users think as and ld are part of the compiler and really should also be included in the manual. -- pinskia at gcc dot gnu dot org

[Bug tree-optimization/30000] New: dummy to get 30,000

2006-11-27 Thread pinskia at gcc dot gnu dot org
I win. -- Summary: dummy to get 30,000 Product: gcc Version: 4.3.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization AssignedTo: unassigned at gcc dot gnu dot org ReportedBy:

[Bug tree-optimization/30000] dummy to get 30,000

2006-11-27 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-11-27 17:07 --- I win, win, win. Anyways invalid. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/29993] typdef declaration of cv-qualified function in class

2006-11-27 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-11-27 17:16 --- Related to PR 6628. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug ada/29958] Ada: gcc bug box with an inherited generic package

2006-11-27 Thread chevallier_sylvain at yahoo dot fr
--- Comment #3 from chevallier_sylvain at yahoo dot fr 2006-11-27 17:21 --- Okay, I have a *more* compact version of this bug : $ cat example.ads package Example is type I is tagged record N : Integer; end record; private procedure P_Private (X

Re: [Bug tree-optimization/29922] [4.3 Regression] [Linux] ICE in insert_into_preds_of_block

2006-11-27 Thread Andrew Pinski
On Mon, 2006-11-27 at 08:06 +, pinskia at gcc dot gnu dot org wrote: --- Comment #11 from pinskia at gcc dot gnu dot org 2006-11-27 08:06 --- Here is the patch which fixes the PHI issue but I don't know if it will always fix the PRE issue but I think it will as the PRE issue is

[Bug tree-optimization/29922] [4.3 Regression] [Linux] ICE in insert_into_preds_of_block

2006-11-27 Thread pinskia at gmail dot com
--- Comment #12 from pinskia at gmail dot com 2006-11-27 17:23 --- Subject: Re: [4.3 Regression] [Linux] ICE in insert_into_preds_of_block On Mon, 2006-11-27 at 08:06 +, pinskia at gcc dot gnu dot org wrote: --- Comment #11 from pinskia at gcc dot gnu dot org

[Bug preprocessor/30001] New: out-of-bounds access when processing empty file

2006-11-27 Thread amylaar at gcc dot gnu dot org
valgrind on Linux the reports the following error: Invalid read of size 1 for the function _cpp_convert_input (at line 1631 in charset.c) when an empty source file is compiled. libcpp/charset.c:_cpp_convert_input line 1631 is: if (to.text[to.len - 1] == '\r') and if to.len is zero, this is an

[Bug c++/29928] typeid of unknown bound array

2006-11-27 Thread sebor at roguewave dot com
--- Comment #2 from sebor at roguewave dot com 2006-11-27 17:37 --- Here are some other cases to consider: #include typeinfo struct S; int main () { typeid (void); typeid (int []); typeid (S); typeid (S); } -- sebor at roguewave dot com changed: What

[Bug c++/29928] typeid of unknown bound array

2006-11-27 Thread sebor at roguewave dot com
--- Comment #3 from sebor at roguewave dot com 2006-11-27 19:07 --- Never mind. The last two cases in my comment #2 are disallowed by the second to last sentence in 5.2.8, p4. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29928

[Bug libfortran/29568] implement unformatted files with subrecords (Intel style)

2006-11-27 Thread tkoenig at gcc dot gnu dot org
--- Comment #26 from tkoenig at gcc dot gnu dot org 2006-11-27 20:43 --- (In reply to comment #24) Subject: Re: implement unformatted files with subrecords (Intel style) I have reviewed the patch and I have one minor comment. I suggest that the continued flag be placed in

[Bug preprocessor/30001] out-of-bounds access when processing empty file

2006-11-27 Thread fang at csl dot cornell dot edu
--- Comment #1 from fang at csl dot cornell dot edu 2006-11-27 20:49 --- Is this related to the standard requirement that a source file must end with a newline character? (and thus cannot be empty?) -- fang at csl dot cornell dot edu changed: What|Removed

[Bug tree-optimization/30000] dummy to get 30,000

2006-11-27 Thread fang at csl dot cornell dot edu
--- Comment #2 from fang at csl dot cornell dot edu 2006-11-27 20:52 --- Funny, I was thinking the same thing, but you snooze, you lose... -- fang at csl dot cornell dot edu changed: What|Removed |Added

[Bug inline-asm/30002] New: Problem with call directive in inline ASM

2006-11-27 Thread blacklight86 at gmail dot com
Hi, I've written this program to try a shellcode made by me: char shell[] = \xeb\x25\x5e\xb8\x46\x00\x00\x00 \xbb\x00\x00\x00\x00\xb9\x00\x00 \x00\x00\xcd\x80\xb8\x0b\x00\x00 \x00\x89\xf3\x6a\x00\x56\x89\xe4 \xba\x00\x00\x00\x00\xcd\x80\xe8 \xd6\xff\xff\xff

[Bug inline-asm/30002] Problem with call directive in inline ASM

2006-11-27 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-11-27 21:33 --- Why do you think this will work? The linker is what places the address and since you have not shown how you used a linker script and for sure that the shell is placed at 0x08049600 I don't trust this at all. Also I

[Bug testsuite/25241] DejaGNU does not distinguish between errors and warnings

2006-11-27 Thread janis at gcc dot gnu dot org
--- Comment #2 from janis at gcc dot gnu dot org 2006-11-27 22:12 --- The functionality to support dg-error and dg-warning is in proc dg-test in file dg.exp from the DejaGnu project. It treats these two directives the same except for the failure message. The GCC testsuite

[Bug fortran/29975] [meta-bugs] ICEs with CP2K

2006-11-27 Thread pault at gcc dot gnu dot org
--- Comment #3 from pault at gcc dot gnu dot org 2006-11-27 22:21 --- Joost, all_cp2k_gfortran.f90:128714: internal compiler error: in build_int_cst_wide, at tree.c:852 Is this the same as PR29976 by any chance? Paul PS I should change your email address on testcases! --

[Bug fortran/29975] [meta-bugs] ICEs with CP2K

2006-11-27 Thread fxcoudert at gcc dot gnu dot org
--- Comment #4 from fxcoudert at gcc dot gnu dot org 2006-11-27 22:24 --- (In reply to comment #3) Is this the same as PR29976 by any chance? Hi Paul, This PR is a metabug for CP2K issues; PR29976 is one of those (I'm in a middle of a workshop frenzy right now, so I don't have time

[Bug fortran/30003] New: Expressions with side effects in array references

2006-11-27 Thread eedelman at gcc dot gnu dot org
(This bug was discovered during a discussion on the mailinglist starting here: http://gcc.gnu.org/ml/fortran/2006-11/msg00636.html) This short program erik:~$ cat foo.f90 program foo implicit none integer :: a(5), b(3) b = [ 1, 2, 3 ] a(1:bar(3)) = b contains integer

[Bug fortran/29976] [4.2/4.3 regression] ICE on optional arg

2006-11-27 Thread pault at gcc dot gnu dot org
--- Comment #3 from pault at gcc dot gnu dot org 2006-11-27 22:25 --- I will submit the patch as 'obvious' tomorrow morning - see: http://gcc.gnu.org/ml/fortran/2006-11/msg00686.html Paul -- pault at gcc dot gnu dot org changed: What|Removed

[Bug rtl-optimization/30004] New: overzealous alignment of structure - 32 bytes (not bits!)

2006-11-27 Thread vda dot linux at googlemail dot com
Hello. I am a maintainer of busybox project. One of our goals is to optimize our code for size. The following testcase was derived from busybox source: struct client_config_t { char foreground; char quit_after_lease; char release_on_quit; char abort_if_no_lease;

[Bug rtl-optimization/30004] overzealous alignment of structure - 32 bytes (not bits!)

2006-11-27 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-11-27 22:57 --- I think this was fixed by: 2006-01-10 Jan Beulich [EMAIL PROTECTED] * config/i386/i386.c (ix86_data_alignment): Don't force alignment to 256 bits when optimize_size. --

[Bug target/22158] char global_var[] = larger than 32 bytes; uses silly amounts of alignment even with -Os

2006-11-27 Thread pinskia at gcc dot gnu dot org
--- Comment #10 from pinskia at gcc dot gnu dot org 2006-11-27 22:57 --- I think this was fixed by: 2006-01-10 Jan Beulich [EMAIL PROTECTED] * config/i386/i386.c (ix86_data_alignment): Don't force alignment to 256 bits when optimize_size. --

[Bug rtl-optimization/30004] overzealous alignment of structure - 32 bytes (not bits!)

2006-11-27 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-11-27 22:59 --- Yes it was fixed: .comm udhcp_client_config1,36,4 . .align 4 .type client_config2, @object .size client_config2, 36 client_config2: -- pinskia at gcc dot gnu dot org

[Bug rtl-optimization/30004] overzealous alignment of structure - 32 bytes (not bits!)

2006-11-27 Thread vda dot linux at googlemail dot com
--- Comment #3 from vda dot linux at googlemail dot com 2006-11-27 23:03 --- Super! Thanks! -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30004

[Bug target/22158] char global_var[] = larger than 32 bytes; uses silly amounts of alignment even with -Os

2006-11-27 Thread pinskia at gcc dot gnu dot org
--- Comment #11 from pinskia at gcc dot gnu dot org 2006-11-27 23:03 --- This was also fixed. s2: .long .LC0 .data .align 4 .type s3, @object .size s3, 49 s3: .string -- pinskia

[Bug web/20588] gcc-patches 2004-02 archives broken

2006-11-27 Thread gary at intrepid dot com
--- Comment #3 from gary at intrepid dot com 2006-11-28 00:26 --- I ran into this today, following up on a thread posted to the GDB discussion list, regarding Bug #8354: http://sourceware.org/ml/gdb/2006-11/msg00185.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20588

[Bug debug/8354] Incorrect DWARF-2/3 emitted for const + array

2006-11-27 Thread gary at intrepid dot com
--- Comment #10 from gary at intrepid dot com 2006-11-28 00:58 --- Created an attachment (id=12702) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=12702action=view) PR/8354 patch discussion thread As reported in Bug #20588, the referenced links to the gcc-patch mailing list

[Bug fortran/29976] [4.2/4.3 regression] ICE on optional arg

2006-11-27 Thread jvdelisle at gcc dot gnu dot org
--- Comment #4 from jvdelisle at gcc dot gnu dot org 2006-11-28 01:18 --- I think wrong url in comment #3 -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29976

[Bug tree-optimization/29984] [4.2/4.3 Regression] SPE GCC segfaults with MAX_EXPR a, a

2006-11-27 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Keywords||missed-optimization Summary|SPE GCC segfaults with

[Bug fortran/29976] [4.2/4.3 regression] ICE on optional arg

2006-11-27 Thread paulthomas2 at wanadoo dot fr
--- Comment #5 from paulthomas2 at wanadoo dot fr 2006-11-28 05:25 --- Subject: Re: [4.2/4.3 regression] ICE on optional arg jvdelisle at gcc dot gnu dot org wrote: --- Comment #4 from jvdelisle at gcc dot gnu dot org 2006-11-28 01:18 --- I think wrong url in comment #3

[Bug fortran/20880] USE association of procedure's own interface

2006-11-27 Thread pault at gcc dot gnu dot org
--- Comment #5 from pault at gcc dot gnu dot org 2006-11-28 05:36 --- Subject: Bug 20880 Author: pault Date: Tue Nov 28 05:36:07 2006 New Revision: 119272 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=119272 Log: 2006-11-28 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/29976] [4.2/4.3 regression] ICE on optional arg

2006-11-27 Thread pault at gcc dot gnu dot org
--- Comment #6 from pault at gcc dot gnu dot org 2006-11-28 05:39 --- Subject: Bug 29976 Author: pault Date: Tue Nov 28 05:39:42 2006 New Revision: 119273 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=119273 Log: 2006-11-28 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/20880] USE association of procedure's own interface

2006-11-27 Thread pault at gcc dot gnu dot org
--- Comment #6 from pault at gcc dot gnu dot org 2006-11-28 05:50 --- Subject: Bug 20880 Author: pault Date: Tue Nov 28 05:50:21 2006 New Revision: 119274 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=119274 Log: 2006-11-28 Paul Thomas [EMAIL PROTECTED] PR

[Bug fortran/29976] [4.2/4.3 regression] ICE on optional arg

2006-11-27 Thread pault at gcc dot gnu dot org
--- Comment #7 from pault at gcc dot gnu dot org 2006-11-28 05:52 --- Subject: Bug 29976 Author: pault Date: Tue Nov 28 05:52:02 2006 New Revision: 119275 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=119275 Log: 2006-11-28 Paul Thomas [EMAIL PROTECTED] PR