| Submitter | Steve Ellcey |
|---|---|
| Date | Nov. 1, 2012, 11:15 p.m. |
| Message ID | <a208297e-52de-4f9a-b4c0-088ce70a6a41@EXCHHUB01.MIPS.com> |
| Download | mbox | patch |
| Permalink | /patch/196409/ |
| State | New |
| Headers | show |
Comments
"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
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.
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);