public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/43662]  New: ICE in insert_save, at caller-save.c:1303
@ 2010-04-06  8:35 marcus at jet dot franken dot de
  2010-04-06  8:36 ` [Bug c/43662] " marcus at jet dot franken dot de
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: marcus at jet dot franken dot de @ 2010-04-06  8:35 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 904 bytes --]

during Wine 64bit build I get

gcc -c  -O2      acmstream.i
acmstream.c: In function ‘AVIFILE_OpenCompressor’:
acmstream.c:327:1: internal compiler error: in insert_save, at
caller-save.c:1303
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://bugs.opensuse.org/> for instructions.

gcc version 4.5.0 20100331 (experimental) [trunk revision 157870] (SUSE Linux)


-- 
           Summary: ICE in insert_save, at caller-save.c:1303
           Product: gcc
           Version: 4.5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: marcus at jet dot franken dot de
 GCC build triplet: x86_64-unknown-linux
  GCC host triplet: x86_64-unknown-linux
GCC target triplet: x86_64-unknown-linux


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug c/43662] ICE in insert_save, at caller-save.c:1303
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
@ 2010-04-06  8:36 ` marcus at jet dot franken dot de
  2010-04-06 10:03 ` [Bug target/43662] [4.5 Regression] " rguenth at gcc dot gnu dot org
                   ` (17 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: marcus at jet dot franken dot de @ 2010-04-06  8:36 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from marcus at jet dot franken dot de  2010-04-06 08:35 -------
Created an attachment (id=20322)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=20322&action=view)
acmstream.i

gcc -c -O2 acmstream.i

started to reduce...  likely attribute(ms_abi) related I think.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.5 Regression] ICE in insert_save, at caller-save.c:1303
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
  2010-04-06  8:36 ` [Bug c/43662] " marcus at jet dot franken dot de
@ 2010-04-06 10:03 ` rguenth at gcc dot gnu dot org
  2010-04-09  2:46 ` [Bug target/43662] [4.5/4.6 Regression] ICE in insert_save with ms_abi attribute pinskia at gcc dot gnu dot org
                   ` (16 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2010-04-06 10:03 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from rguenth at gcc dot gnu dot org  2010-04-06 10:03 -------
We use a caller-save slot of VOIDmode for a DImode mem.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
          Component|c                           |target
     Ever Confirmed|0                           |1
           Keywords|                            |ice-on-valid-code
   Last reconfirmed|0000-00-00 00:00:00         |2010-04-06 10:03:20
               date|                            |
            Summary|ICE in insert_save, at      |[4.5 Regression] ICE in
                   |caller-save.c:1303          |insert_save, at caller-
                   |                            |save.c:1303
   Target Milestone|---                         |4.5.1


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
  2010-04-06  8:36 ` [Bug c/43662] " marcus at jet dot franken dot de
  2010-04-06 10:03 ` [Bug target/43662] [4.5 Regression] " rguenth at gcc dot gnu dot org
@ 2010-04-09  2:46 ` pinskia at gcc dot gnu dot org
  2010-04-09 13:01 ` rguenth at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2010-04-09  2:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from pinskia at gcc dot gnu dot org  2010-04-09 02:46 -------
Short testcase:
int __attribute__((ms_abi)) ACMStream_fnRead(int*iface,int start,int
samples,int buffer){}
typedef struct _IAVIStreamImpl {
  int sInfo;
  int has;
} IAVIStreamImpl;
extern int __attribute__((ms_abi)) aso(void*);
int AVIFILE_OpenCompressor(IAVIStreamImpl *This)
{
  if (This->has != 0)
  aso(&This->has);
  sre(&This->sInfo);
}
--- CUT ---
This is some how related to the ms_abi attribute.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  GCC build triplet|x86_64-unknown-linux        |
   GCC host triplet|x86_64-unknown-linux        |
            Summary|[4.5/4.6 Regression] ICE in |[4.5/4.6 Regression] ICE in
                   |insert_save, at caller-     |insert_save with ms_abi
                   |save.c:1303                 |attribute


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
                   ` (2 preceding siblings ...)
  2010-04-09  2:46 ` [Bug target/43662] [4.5/4.6 Regression] ICE in insert_save with ms_abi attribute pinskia at gcc dot gnu dot org
@ 2010-04-09 13:01 ` rguenth at gcc dot gnu dot org
  2010-04-09 16:32 ` hjl dot tools at gmail dot com
                   ` (14 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2010-04-09 13:01 UTC (permalink / raw)
  To: gcc-bugs



-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
                   ` (3 preceding siblings ...)
  2010-04-09 13:01 ` rguenth at gcc dot gnu dot org
@ 2010-04-09 16:32 ` hjl dot tools at gmail dot com
  2010-04-10 15:29 ` jiez at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: hjl dot tools at gmail dot com @ 2010-04-09 16:32 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from hjl dot tools at gmail dot com  2010-04-09 16:32 -------
It is caused by revision 157849:

http://gcc.gnu.org/ml/gcc-cvs/2010-03/msg00686.html


-- 

hjl dot tools at gmail dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jiez at gcc dot gnu dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
                   ` (4 preceding siblings ...)
  2010-04-09 16:32 ` hjl dot tools at gmail dot com
@ 2010-04-10 15:29 ` jiez at gcc dot gnu dot org
  2010-04-14 13:20 ` mikpe at it dot uu dot se
                   ` (12 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jiez at gcc dot gnu dot org @ 2010-04-10 15:29 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jiez at gcc dot gnu dot org  2010-04-10 15:29 -------
The patch:

http://gcc.gnu.org/ml/gcc-patches/2010-04/msg00466.html


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
                   ` (5 preceding siblings ...)
  2010-04-10 15:29 ` jiez at gcc dot gnu dot org
@ 2010-04-14 13:20 ` mikpe at it dot uu dot se
  2010-04-14 14:08 ` [Bug target/43662] [4.4/4.5/4.6 " rguenth at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mikpe at it dot uu dot se @ 2010-04-14 13:20 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from mikpe at it dot uu dot se  2010-04-14 13:20 -------
The patch causing this regression was backported to 4.4 in r157850, causing
current 4.4 to also regress.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.4/4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
                   ` (6 preceding siblings ...)
  2010-04-14 13:20 ` mikpe at it dot uu dot se
@ 2010-04-14 14:08 ` rguenth at gcc dot gnu dot org
  2010-04-14 14:08 ` rguenth at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2010-04-14 14:08 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from rguenth at gcc dot gnu dot org  2010-04-14 14:08 -------
P1 for the regression on the release branch.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P4                          |P1
            Summary|[4.5/4.6 Regression] ICE in |[4.4/4.5/4.6 Regression] ICE
                   |insert_save with ms_abi     |in insert_save with ms_abi
                   |attribute                   |attribute


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.4/4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
                   ` (7 preceding siblings ...)
  2010-04-14 14:08 ` [Bug target/43662] [4.4/4.5/4.6 " rguenth at gcc dot gnu dot org
@ 2010-04-14 14:08 ` rguenth at gcc dot gnu dot org
  2010-04-14 18:23 ` mikpe at it dot uu dot se
                   ` (9 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2010-04-14 14:08 UTC (permalink / raw)
  To: gcc-bugs



-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.5.1                       |4.4.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.4/4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
                   ` (8 preceding siblings ...)
  2010-04-14 14:08 ` rguenth at gcc dot gnu dot org
@ 2010-04-14 18:23 ` mikpe at it dot uu dot se
  2010-04-14 19:00 ` sezeroz at gmail dot com
                   ` (8 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mikpe at it dot uu dot se @ 2010-04-14 18:23 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from mikpe at it dot uu dot se  2010-04-14 18:23 -------
(In reply to comment #5)
> The patch:
> 
> http://gcc.gnu.org/ml/gcc-patches/2010-04/msg00466.html

The test case in this patch breaks on 32-bit x86 because gcc complains that the
ms_abi attribute is only available in 64-bit mode.  The following fixes it:

--- gcc/testsuite/gcc.target/i386/pr43662.c.~1~
+++ gcc/testsuite/gcc.target/i386/pr43662.c
@@ -1,4 +1,5 @@
 /* { dg-do compile } */
+/* { dg-require-effective-target lp64 } */
 /* { dg-options "-O2" } */

 int __attribute__((ms_abi)) ACMStream_fnRead(int*iface,int start,int


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.4/4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
                   ` (9 preceding siblings ...)
  2010-04-14 18:23 ` mikpe at it dot uu dot se
@ 2010-04-14 19:00 ` sezeroz at gmail dot com
  2010-04-19  7:10 ` jakub at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: sezeroz at gmail dot com @ 2010-04-14 19:00 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from sezeroz at gmail dot com  2010-04-14 18:59 -------
(In reply to comment #8)
> +/* { dg-require-effective-target lp64 } */

Adding llp64 to that would be helpful, too.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.4/4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
                   ` (10 preceding siblings ...)
  2010-04-14 19:00 ` sezeroz at gmail dot com
@ 2010-04-19  7:10 ` jakub at gcc dot gnu dot org
  2010-04-19  7:25 ` jiez at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jakub at gcc dot gnu dot org @ 2010-04-19  7:10 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from jakub at gcc dot gnu dot org  2010-04-19 07:10 -------
I don't think llp64 there would be very much helpful, then all functions are
ms_abi and thus no ABI changes in between functions and no ICE.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.4/4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
                   ` (11 preceding siblings ...)
  2010-04-19  7:10 ` jakub at gcc dot gnu dot org
@ 2010-04-19  7:25 ` jiez at gcc dot gnu dot org
  2010-04-19 10:03 ` jiez at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jiez at gcc dot gnu dot org @ 2010-04-19  7:25 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from jiez at gcc dot gnu dot org  2010-04-19 07:24 -------
Thanks all. This is the updated patch:

http://gcc.gnu.org/ml/gcc-patches/2010-04/msg01157.html


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.4/4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
                   ` (12 preceding siblings ...)
  2010-04-19  7:25 ` jiez at gcc dot gnu dot org
@ 2010-04-19 10:03 ` jiez at gcc dot gnu dot org
  2010-04-19 10:05 ` jiez at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jiez at gcc dot gnu dot org @ 2010-04-19 10:03 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from jiez at gcc dot gnu dot org  2010-04-19 10:03 -------
Subject: Bug 43662

Author: jiez
Date: Mon Apr 19 10:02:52 2010
New Revision: 158509

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=158509
Log:
        PR target/43662
        * reginfo.c (reinit_regs): Set caller_save_initialized_p
        to false.

        testsuite/
        PR target/43662
        * gcc.target/i386/pr43662.c: New test.

Added:
    trunk/gcc/testsuite/gcc.target/i386/pr43662.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/reginfo.c
    trunk/gcc/testsuite/ChangeLog


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.4/4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
                   ` (13 preceding siblings ...)
  2010-04-19 10:03 ` jiez at gcc dot gnu dot org
@ 2010-04-19 10:05 ` jiez at gcc dot gnu dot org
  2010-04-19 10:06 ` jiez at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jiez at gcc dot gnu dot org @ 2010-04-19 10:05 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from jiez at gcc dot gnu dot org  2010-04-19 10:05 -------
Subject: Bug 43662

Author: jiez
Date: Mon Apr 19 10:04:43 2010
New Revision: 158510

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=158510
Log:
        PR target/43662
        * reginfo.c (reinit_regs): Set caller_save_initialized_p
        to false.

        testsuite/
        PR target/43662
        * gcc.target/i386/pr43662.c: New test.

Added:
    branches/gcc-4_5-branch/gcc/testsuite/gcc.target/i386/pr43662.c
Modified:
    branches/gcc-4_5-branch/gcc/ChangeLog
    branches/gcc-4_5-branch/gcc/reginfo.c
    branches/gcc-4_5-branch/gcc/testsuite/ChangeLog


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.4/4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
                   ` (14 preceding siblings ...)
  2010-04-19 10:05 ` jiez at gcc dot gnu dot org
@ 2010-04-19 10:06 ` jiez at gcc dot gnu dot org
  2010-04-19 10:10 ` jiez at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jiez at gcc dot gnu dot org @ 2010-04-19 10:06 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from jiez at gcc dot gnu dot org  2010-04-19 10:06 -------
Subject: Bug 43662

Author: jiez
Date: Mon Apr 19 10:06:13 2010
New Revision: 158511

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=158511
Log:
        PR target/43662
        * reginfo.c (reinit_regs): Set caller_save_initialized_p
        to false.

        testsuite/
        PR target/43662
        * gcc.target/i386/pr43662.c: New test.

Added:
    branches/gcc-4_4-branch/gcc/testsuite/gcc.target/i386/pr43662.c
Modified:
    branches/gcc-4_4-branch/gcc/ChangeLog
    branches/gcc-4_4-branch/gcc/reginfo.c
    branches/gcc-4_4-branch/gcc/testsuite/ChangeLog


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.4/4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
                   ` (15 preceding siblings ...)
  2010-04-19 10:06 ` jiez at gcc dot gnu dot org
@ 2010-04-19 10:10 ` jiez at gcc dot gnu dot org
  2010-04-22  9:43 ` jakub at gcc dot gnu dot org
  2010-07-06  1:49 ` pinskia at gcc dot gnu dot org
  18 siblings, 0 replies; 20+ messages in thread
From: jiez at gcc dot gnu dot org @ 2010-04-19 10:10 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from jiez at gcc dot gnu dot org  2010-04-19 10:10 -------
Should be fixed now on trunk, 4.5 and 4.4 branches.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.4/4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
                   ` (16 preceding siblings ...)
  2010-04-19 10:10 ` jiez at gcc dot gnu dot org
@ 2010-04-22  9:43 ` jakub at gcc dot gnu dot org
  2010-07-06  1:49 ` pinskia at gcc dot gnu dot org
  18 siblings, 0 replies; 20+ messages in thread
From: jakub at gcc dot gnu dot org @ 2010-04-22  9:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #16 from jakub at gcc dot gnu dot org  2010-04-22 09:43 -------
Fixed.


-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

* [Bug target/43662] [4.4/4.5/4.6 Regression] ICE in insert_save with ms_abi attribute
  2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
                   ` (17 preceding siblings ...)
  2010-04-22  9:43 ` jakub at gcc dot gnu dot org
@ 2010-07-06  1:49 ` pinskia at gcc dot gnu dot org
  18 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2010-07-06  1:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #17 from pinskia at gcc dot gnu dot org  2010-07-06 01:49 -------
*** Bug 44818 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mathieu dot pogeant at rdf
                   |                            |dot renesas dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43662


^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2010-07-06  1:49 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-04-06  8:35 [Bug c/43662] New: ICE in insert_save, at caller-save.c:1303 marcus at jet dot franken dot de
2010-04-06  8:36 ` [Bug c/43662] " marcus at jet dot franken dot de
2010-04-06 10:03 ` [Bug target/43662] [4.5 Regression] " rguenth at gcc dot gnu dot org
2010-04-09  2:46 ` [Bug target/43662] [4.5/4.6 Regression] ICE in insert_save with ms_abi attribute pinskia at gcc dot gnu dot org
2010-04-09 13:01 ` rguenth at gcc dot gnu dot org
2010-04-09 16:32 ` hjl dot tools at gmail dot com
2010-04-10 15:29 ` jiez at gcc dot gnu dot org
2010-04-14 13:20 ` mikpe at it dot uu dot se
2010-04-14 14:08 ` [Bug target/43662] [4.4/4.5/4.6 " rguenth at gcc dot gnu dot org
2010-04-14 14:08 ` rguenth at gcc dot gnu dot org
2010-04-14 18:23 ` mikpe at it dot uu dot se
2010-04-14 19:00 ` sezeroz at gmail dot com
2010-04-19  7:10 ` jakub at gcc dot gnu dot org
2010-04-19  7:25 ` jiez at gcc dot gnu dot org
2010-04-19 10:03 ` jiez at gcc dot gnu dot org
2010-04-19 10:05 ` jiez at gcc dot gnu dot org
2010-04-19 10:06 ` jiez at gcc dot gnu dot org
2010-04-19 10:10 ` jiez at gcc dot gnu dot org
2010-04-22  9:43 ` jakub at gcc dot gnu dot org
2010-07-06  1:49 ` pinskia at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).