diff mbox

[lra,pr55103,committed] Save lra_int struct.

Message ID a208297e-52de-4f9a-b4c0-088ce70a6a41@EXCHHUB01.MIPS.com
State New
Headers show

Commit Message

Steve Ellcey Nov. 1, 2012, 11:15 p.m. UTC
I checked in this patch as obvious.  It fixes PR 55103 which is a compiler
abort on MIPS with the -mips16 flag.  After committing I realized I forgot
to put the bug number in the ChangeLog, I will update PR 55103 by hand.

Steve Ellcey
sellcey@mips.com


2012-11-01  Steve Ellcey  <sellcey@mips.com>

	* target-globals.c (save_target_globals): Save lra_int struct.

Comments

Richard Sandiford Nov. 2, 2012, 9:53 a.m. UTC | #1
"Steve Ellcey " <sellcey@mips.com> writes:
> I checked in this patch as obvious.  It fixes PR 55103 which is a compiler
> abort on MIPS with the -mips16 flag.  After committing I realized I forgot
> to put the bug number in the ChangeLog, I will update PR 55103 by hand.

Thanks
Vladimir Makarov Nov. 2, 2012, 1:06 p.m. UTC | #2
On 12-11-01 7:15 PM, Steve Ellcey wrote:
> I checked in this patch as obvious.  It fixes PR 55103 which is a compiler
> abort on MIPS with the -mips16 flag.  After committing I realized I forgot
> to put the bug number in the ChangeLog, I will update PR 55103 by hand.
>
Thanks, Steve.
diff mbox

Patch

diff --git a/gcc/target-globals.c b/gcc/target-globals.c
index b3d02a1..ac170ab 100644
--- a/gcc/target-globals.c
+++ b/gcc/target-globals.c
@@ -80,6 +80,7 @@  save_target_globals (void)
   g->cfgloop = XCNEW (struct target_cfgloop);
   g->ira = XCNEW (struct target_ira);
   g->ira_int = XCNEW (struct target_ira_int);
+  g->lra_int = XCNEW (struct target_lra_int);
   g->builtins = XCNEW (struct target_builtins);
   g->gcse = XCNEW (struct target_gcse);
   g->bb_reorder = XCNEW (struct target_bb_reorder);