public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/21623] [4.0 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
       [not found] <bug-21623-3350@http.gcc.gnu.org/bugzilla/>
@ 2005-10-03 22:28 ` kkojima at gcc dot gnu dot org
  2005-10-22 21:31 ` [Bug target/21623] [4.0/4.1 " pinskia at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 17+ messages in thread
From: kkojima at gcc dot gnu dot org @ 2005-10-03 22:28 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from kkojima at gcc dot gnu dot org  2005-10-03 22:28 -------
This PR was discussed at the thread of gcc-patches list statring
with http://gcc.gnu.org/ml/gcc-patches/2005-09/msg01527.html and
Joern pointed out that we must improve the reload infrastrucure to
fix this PR.  There is an argument about whether it's appropriate
for stage3 or not.  I've checked in the patch in
http://gcc.gnu.org/ml/gcc-patches/2005-09/msg01952.html
as a temporary workwround on mainline and 4.0-branch under Joern's
approval.  It gets rid of the ICEs for the testcase, though it
doesn't fix the real problem.  So please don't close this PR ATM.


-- 

kkojima at gcc dot gnu dot org changed:

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


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


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

* [Bug target/21623] [4.0/4.1 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
       [not found] <bug-21623-3350@http.gcc.gnu.org/bugzilla/>
  2005-10-03 22:28 ` [Bug target/21623] [4.0 regression] ICE in reload_cse_simplify_operands, at postreload.c:391 kkojima at gcc dot gnu dot org
@ 2005-10-22 21:31 ` pinskia at gcc dot gnu dot org
  2005-10-30 23:32 ` pinskia at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 17+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-10-22 21:31 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.0.3                       |4.2.0


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


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

* [Bug target/21623] [4.0/4.1 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
       [not found] <bug-21623-3350@http.gcc.gnu.org/bugzilla/>
  2005-10-03 22:28 ` [Bug target/21623] [4.0 regression] ICE in reload_cse_simplify_operands, at postreload.c:391 kkojima at gcc dot gnu dot org
  2005-10-22 21:31 ` [Bug target/21623] [4.0/4.1 " pinskia at gcc dot gnu dot org
@ 2005-10-30 23:32 ` pinskia at gcc dot gnu dot org
  2005-11-22 22:57 ` [Bug target/21623] [4.0/4.1/4.2 " amylaar at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 17+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-10-30 23:32 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P2                          |P5
   Target Milestone|4.2.0                       |4.1.0


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


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

* [Bug target/21623] [4.0/4.1/4.2 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
       [not found] <bug-21623-3350@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2005-10-30 23:32 ` pinskia at gcc dot gnu dot org
@ 2005-11-22 22:57 ` amylaar at gcc dot gnu dot org
  2005-11-24 18:56 ` amylaar at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 17+ messages in thread
From: amylaar at gcc dot gnu dot org @ 2005-11-22 22:57 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from amylaar at gcc dot gnu dot org  2005-11-22 22:57 -------
Subject: Bug 21623

Author: amylaar
Date: Tue Nov 22 22:57:35 2005
New Revision: 107381

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=107381
Log:
        Preparatory work for PR target/21623:
        * alpha.c (secondary_reload_class): Rename to:
        (alpha_secondary_reload_class).
        * alpha.h, alpha-protos.h: Likewise.
        * mn10300.c (secondary_reload_class): Rename to:
        (mn10300_secondary_reload_class).
        * mn10300.h, mn10300-protos.h: Likewise.
        * pa.c (secondary_reload_class): Rename to:
        (pa_secondary_reload_class).
        * pa.h, pa-protos.h: Likewise.
        * rs6000.c (secondary_reload_class): Rename to:
        rs6000_secondary_reload_class.
        * rs6000.h, rs6000-protos.h: Likewise.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/alpha/alpha-protos.h
    trunk/gcc/config/alpha/alpha.c
    trunk/gcc/config/alpha/alpha.h
    trunk/gcc/config/mn10300/mn10300-protos.h
    trunk/gcc/config/mn10300/mn10300.c
    trunk/gcc/config/mn10300/mn10300.h
    trunk/gcc/config/pa/pa-protos.h
    trunk/gcc/config/pa/pa.c
    trunk/gcc/config/pa/pa.h
    trunk/gcc/config/rs6000/rs6000-protos.h
    trunk/gcc/config/rs6000/rs6000.c
    trunk/gcc/config/rs6000/rs6000.h


-- 


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


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

* [Bug target/21623] [4.0/4.1/4.2 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
       [not found] <bug-21623-3350@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2005-11-22 22:57 ` [Bug target/21623] [4.0/4.1/4.2 " amylaar at gcc dot gnu dot org
@ 2005-11-24 18:56 ` amylaar at gcc dot gnu dot org
  2006-01-29  0:29 ` [Bug target/21623] [4.0/4.1 " pinskia at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 17+ messages in thread
From: amylaar at gcc dot gnu dot org @ 2005-11-24 18:56 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from amylaar at gcc dot gnu dot org  2005-11-24 18:56 -------
Subject: Bug 21623

Author: amylaar
Date: Thu Nov 24 18:55:53 2005
New Revision: 107468

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=107468
Log:
        PR target/21623:

        * regclass.c (FORBIDDEN_INC_DEC_CLASSES): Remove
        SECONDARY_INPUT_RELOAD_CLASS and SECONDARY_OUTPUT_RELOAD_CLASS tests.
        (init_fake_stack_mems): Remove HAVE_SECONDARY_RELOADS test.
        (memory_move_secondary_cost, init_reg_autoinc): Remove
        SECONDARY_INPUT_RELOAD_CLASS / SECONDARY_OUTPUT_RELOAD_CLASS tests.
        Replace SECONDARY_{IN,OUT}PUT_RELOAD_CLASS use with
        secondary_reload_class call.
        (copy_cost): Likewise.  Add new parameter prev_sri.  Changed all
        callers.
        * reload.c (entire file): Remove HAVE_SECONDARY_RELOADS checks.
        (push_secondary_reload): Use secondary_reload target hook.
        (secondary_reload_class, scratch_reload_class): New functions.
        (push_reload): Remove SECONDARY_INPUT_RELOAD_CLASS and
        SECONDARY_OUTPUT_RELOAD_CLASS tests.  Replace
        SECONDARY_{IN,OUT}PUT_RELOAD_CLASS use with secondary_reload_class
call.
        * reload.h (HAVE_SECONDARY_RELOADS): Don't define nor test.
        (secondary_reload_class, scratch_reload_class): Declare.
        * reload1.c: Include target.h.
        (reload_adjust_reg_for_temp): New function.
        (reload_adjust_reg_for_icode): Likewise.
        (choose_reload_regs): Remove SECONDARY_INPUT_RELOAD_CLASS test.
        Replace SECONDARY_INPUT_RELOAD_CLASS use with secondary_reload_class
        call.
        (emit_input_reload_insns): Likewise.  Rewrite secondary reload checks
        for inheritance.  Support case when both secondary & tertiary reloads
        are for intermediate registers.
        (emit_output_reload_insns): Replace SECONDARY_OUTPUT_RELOAD_CLASS use
        with secondary_reload_class call.  Support case when both secondary
        & tertiary reloads are for intermediate registers.
        * target-def.h (TARGET_SECONDARY_RELOAD): Provide default definition.
        (TARGET_INITIALIZER) Add TARGET_SECONDARY_RELOAD.
        * target.h (secondary_reload_info): New struct / typedef.
        (struct gcc_target): New member secondary_reload.
        * targhooks.c Include reload.h, optabs.h and recog.h.
        (default_secondary_reload): New function.
        * targhooks.h (default_secondary_reload): Declare.
        * doc/tm.texi: Document secondary_reload target hook.  Update
        description of SECONDARY_*RELOAD_CLASS and reload_{in,out}<mode>.
        * doc/md.texi: Likewise.

        * sh-protos.h (sh_secondary_reload): Declare.
        * sh.c (TARGET_SECONDARY_RELOAD): Override.
        (sh_secondary_reload): New function.
        * sh.h (SECONDARY_INOUT_RELOAD_CLASS): Don't define.
        (SECONDARY_OUTPUT_RELOAD_CLASS): Likewise.
        (SECONDARY_INPUT_RELOAD_CLASS): Likewise.
        (HAVE_SECONDARY_RELOADS): Define.
        * sh.md (reload_indf): Rename to:
        (reload_indf__frn).
        (reload_outdf): Rename to:
        (reload_outdf__RnFRm).
        (reload_insf): Rename to:
        (reload_insf__frn).
        (reload_insi): Rename to:
        (reload_insi__i_fpul).

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/sh/sh-protos.h
    trunk/gcc/config/sh/sh.c
    trunk/gcc/config/sh/sh.h
    trunk/gcc/config/sh/sh.md
    trunk/gcc/doc/md.texi
    trunk/gcc/doc/tm.texi
    trunk/gcc/optabs.c
    trunk/gcc/regclass.c
    trunk/gcc/reload.c
    trunk/gcc/reload.h
    trunk/gcc/reload1.c
    trunk/gcc/target-def.h
    trunk/gcc/target.h
    trunk/gcc/targhooks.c
    trunk/gcc/targhooks.h


-- 


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


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

* [Bug target/21623] [4.0/4.1 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
       [not found] <bug-21623-3350@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2005-11-24 18:56 ` amylaar at gcc dot gnu dot org
@ 2006-01-29  0:29 ` pinskia at gcc dot gnu dot org
  2006-02-13 22:02 ` joern dot rennecke at st dot com
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 17+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-01-29  0:29 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from pinskia at gcc dot gnu dot org  2006-01-29 00:29 -------
Confirmed, fixed at least on the mainline, this might be too hard to fix on the
4.1 branch.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
           Keywords|                            |ice-on-valid-code
      Known to work|                            |4.2.0
   Last reconfirmed|0000-00-00 00:00:00         |2006-01-29 00:29:13
               date|                            |
            Summary|[4.0/4.1/4.2 regression] ICE|[4.0/4.1 regression] ICE in
                   |in                          |reload_cse_simplify_operands
                   |reload_cse_simplify_operands|, at postreload.c:391
                   |, at postreload.c:391       |


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


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

* [Bug target/21623] [4.0/4.1 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
       [not found] <bug-21623-3350@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2006-01-29  0:29 ` [Bug target/21623] [4.0/4.1 " pinskia at gcc dot gnu dot org
@ 2006-02-13 22:02 ` joern dot rennecke at st dot com
  2006-02-14  1:21 ` mark at codesourcery dot com
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 17+ messages in thread
From: joern dot rennecke at st dot com @ 2006-02-13 22:02 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from joern dot rennecke at st dot com  2006-02-13 22:02 -------
Subject: Re:  [4.0/4.1 regression] ICE in reload_cse_simplify_operands, at
postreload.c:391

Andrew Pinski wrote:

> Confirmed, fixed at least on the mainline, this might be too hard to fix on the
> 4.1 branch.

No, it is just a matter of what is desired for the branch.  Mark, would you
like
me to backport the patch from mainline to the 4.1 branch?
N.B. Kaz' cost adjustment is already in the branch, so the testcae doesn't
trigger.



-- 


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


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

* [Bug target/21623] [4.0/4.1 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
       [not found] <bug-21623-3350@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2006-02-13 22:02 ` joern dot rennecke at st dot com
@ 2006-02-14  1:21 ` mark at codesourcery dot com
  2006-02-28 20:49 ` mmitchel at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 17+ messages in thread
From: mark at codesourcery dot com @ 2006-02-14  1:21 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from mark at codesourcery dot com  2006-02-14 01:21 -------
Subject: Re:  [4.0/4.1 regression] ICE in reload_cse_simplify_operands,
 at postreload.c:391

Joern RENNECKE wrote:

> No, it is just a matter of what is desired for the branch.  Mark, would
> you like
> me to backport the patch from mainline to the 4.1 branch?

I think this is too aggressive for the branch at this point.  However,
we might consider it for 4.1.1, if all goes well on the mainline; feel
free to ask again after 4.1.0 is out.

Thanks,


-- 


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


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

* [Bug target/21623] [4.0/4.1 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
       [not found] <bug-21623-3350@http.gcc.gnu.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2006-02-14  1:21 ` mark at codesourcery dot com
@ 2006-02-28 20:49 ` mmitchel at gcc dot gnu dot org
  2006-05-25  2:46 ` mmitchel at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 17+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-02-28 20:49 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.1.0                       |4.1.1


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


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

* [Bug target/21623] [4.0/4.1 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
       [not found] <bug-21623-3350@http.gcc.gnu.org/bugzilla/>
                   ` (8 preceding siblings ...)
  2006-02-28 20:49 ` mmitchel at gcc dot gnu dot org
@ 2006-05-25  2:46 ` mmitchel at gcc dot gnu dot org
  2007-02-14  9:34 ` mmitchel at gcc dot gnu dot org
  2008-07-04 15:08 ` [Bug target/21623] [4.1 " jsm28 at gcc dot gnu dot org
  11 siblings, 0 replies; 17+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-05-25  2:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from mmitchel at gcc dot gnu dot org  2006-05-25 02:36 -------
Will not be fixed in 4.1.1; adjust target milestone to 4.1.2.


-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.1.1                       |4.1.2


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


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

* [Bug target/21623] [4.0/4.1 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
       [not found] <bug-21623-3350@http.gcc.gnu.org/bugzilla/>
                   ` (9 preceding siblings ...)
  2006-05-25  2:46 ` mmitchel at gcc dot gnu dot org
@ 2007-02-14  9:34 ` mmitchel at gcc dot gnu dot org
  2008-07-04 15:08 ` [Bug target/21623] [4.1 " jsm28 at gcc dot gnu dot org
  11 siblings, 0 replies; 17+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-02-14  9:34 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.1.2                       |4.1.3


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


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

* [Bug target/21623] [4.1 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
       [not found] <bug-21623-3350@http.gcc.gnu.org/bugzilla/>
                   ` (10 preceding siblings ...)
  2007-02-14  9:34 ` mmitchel at gcc dot gnu dot org
@ 2008-07-04 15:08 ` jsm28 at gcc dot gnu dot org
  11 siblings, 0 replies; 17+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2008-07-04 15:08 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from jsm28 at gcc dot gnu dot org  2008-07-04 15:07 -------
Closing 4.1 branch.


-- 

jsm28 at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
      Known to fail|4.0.4                       |4.0.4 4.1.3
         Resolution|                            |FIXED
   Target Milestone|4.1.3                       |4.2.0


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


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

* [Bug target/21623] [4.0 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
  2005-05-17 14:32 [Bug target/21623] New: [4.0 " dank at kegel dot com
                   ` (3 preceding siblings ...)
  2005-08-20 20:52 ` pinskia at gcc dot gnu dot org
@ 2005-09-27 16:15 ` mmitchel at gcc dot gnu dot org
  4 siblings, 0 replies; 17+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-09-27 16:15 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.0.2                       |4.0.3


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


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

* [Bug target/21623] [4.0 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
  2005-05-17 14:32 [Bug target/21623] New: [4.0 " dank at kegel dot com
                   ` (2 preceding siblings ...)
  2005-07-26 20:06 ` pinskia at gcc dot gnu dot org
@ 2005-08-20 20:52 ` pinskia at gcc dot gnu dot org
  2005-09-27 16:15 ` mmitchel at gcc dot gnu dot org
  4 siblings, 0 replies; 17+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-08-20 20:52 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
 GCC target triplet|sh4-unknown-gnu-linux       |sh4-*-linux-gnu


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


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

* [Bug target/21623] [4.0 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
  2005-05-17 14:32 [Bug target/21623] New: [4.0 " dank at kegel dot com
  2005-05-17 14:33 ` [Bug target/21623] " dank at kegel dot com
  2005-06-30 12:12 ` pinskia at gcc dot gnu dot org
@ 2005-07-26 20:06 ` pinskia at gcc dot gnu dot org
  2005-08-20 20:52 ` pinskia at gcc dot gnu dot org
  2005-09-27 16:15 ` mmitchel at gcc dot gnu dot org
  4 siblings, 0 replies; 17+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-07-26 20:06 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.0.2


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


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

* [Bug target/21623] [4.0 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
  2005-05-17 14:32 [Bug target/21623] New: [4.0 " dank at kegel dot com
  2005-05-17 14:33 ` [Bug target/21623] " dank at kegel dot com
@ 2005-06-30 12:12 ` pinskia at gcc dot gnu dot org
  2005-07-26 20:06 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 17+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-30 12:12 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-06-30 12:11 -------
*** Bug 22246 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |sieb at sscd dot de


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


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

* [Bug target/21623] [4.0 regression] ICE in reload_cse_simplify_operands, at postreload.c:391
  2005-05-17 14:32 [Bug target/21623] New: [4.0 " dank at kegel dot com
@ 2005-05-17 14:33 ` dank at kegel dot com
  2005-06-30 12:12 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 17+ messages in thread
From: dank at kegel dot com @ 2005-05-17 14:33 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dank at kegel dot com  2005-05-17 14:33 -------
Created an attachment (id=8911)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=8911&action=view)
reduced source from glibc-2.3.5


-- 


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


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

end of thread, other threads:[~2008-07-04 15:08 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-21623-3350@http.gcc.gnu.org/bugzilla/>
2005-10-03 22:28 ` [Bug target/21623] [4.0 regression] ICE in reload_cse_simplify_operands, at postreload.c:391 kkojima at gcc dot gnu dot org
2005-10-22 21:31 ` [Bug target/21623] [4.0/4.1 " pinskia at gcc dot gnu dot org
2005-10-30 23:32 ` pinskia at gcc dot gnu dot org
2005-11-22 22:57 ` [Bug target/21623] [4.0/4.1/4.2 " amylaar at gcc dot gnu dot org
2005-11-24 18:56 ` amylaar at gcc dot gnu dot org
2006-01-29  0:29 ` [Bug target/21623] [4.0/4.1 " pinskia at gcc dot gnu dot org
2006-02-13 22:02 ` joern dot rennecke at st dot com
2006-02-14  1:21 ` mark at codesourcery dot com
2006-02-28 20:49 ` mmitchel at gcc dot gnu dot org
2006-05-25  2:46 ` mmitchel at gcc dot gnu dot org
2007-02-14  9:34 ` mmitchel at gcc dot gnu dot org
2008-07-04 15:08 ` [Bug target/21623] [4.1 " jsm28 at gcc dot gnu dot org
2005-05-17 14:32 [Bug target/21623] New: [4.0 " dank at kegel dot com
2005-05-17 14:33 ` [Bug target/21623] " dank at kegel dot com
2005-06-30 12:12 ` pinskia at gcc dot gnu dot org
2005-07-26 20:06 ` pinskia at gcc dot gnu dot org
2005-08-20 20:52 ` pinskia at gcc dot gnu dot org
2005-09-27 16:15 ` mmitchel 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).