--- Comment #12 from pinskia at gcc dot gnu dot org 2005-10-06 22:14
---
Fixed.
--
pinskia at gcc dot gnu dot org changed:
What|Removed |Added
Status|ASSIGNE
--- Comment #11 from cvs-commit at gcc dot gnu dot org 2005-10-06 22:14
---
Subject: Bug 23651
CVSROOT:/cvs/gcc
Module name:gcc
Changes by: [EMAIL PROTECTED] 2005-10-06 22:14:37
Modified files:
gcc: ChangeLog cfgexpand.c
Log message:
2
--- Comment #10 from pinskia at gcc dot gnu dot org 2005-10-06 15:06
---
Patch posted:
http://gcc.gnu.org/ml/gcc-patches/2005-10/msg00280.html
--
pinskia at gcc dot gnu dot org changed:
What|Removed |Added
-
--- Comment #9 from pinskia at gcc dot gnu dot org 2005-10-06 01:28 ---
(In reply to comment #6)
> I can reproduce this reliably for powerpc64-linux with -m64 using the testcase
> in comment #3; using -m32 the results are intermittent.
>
> A regression hunt identified the following patc
--- Comment #8 from pinskia at gcc dot gnu dot org 2005-10-06 01:21 ---
I have a fix for this bug, return_label and naked_return_label don't need to be
set after expand. Hmm, maybe we could move them to global memory and not use
up 8-16 bytes in function.c since we never expand more tha
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-16
19:59 ---
Rereducing on the mainline for x86_64-pc-linux with -m32.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23651
--
What|Removed |Added
Severity|normal |critical
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23651
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-08-31
13:28 ---
Confirmed, reduced testcase:
namespace std
{
struct allocator
{
~allocator() throw(){}
};
struct string
{
struct _Alloc_hider : allocator {};
_Alloc_hider _M_dataplus;
string();