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
sell...@mips.com


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

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


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);

Reply via email to