From patchwork Thu Nov 1 23:15:05 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [lra,pr55103,committed] Save lra_int struct. From: Steve Ellcey X-Patchwork-Id: 196409 Message-Id: To: Cc: Date: Thu, 1 Nov 2012 16:15:05 -0700 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 * 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);