This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch, lra, pr55103, committed] Save lra_int struct.


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.


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]