re PR rtl-optimization/45101 (ICE: in insert_expr_in_table, at gcse.c:1213 with -gcse-las)
PR rtl-optimization/45101 * gcse.c (hash_scan_set): Fix argument ordering of insert_expr_in_table for gcse-las. From-SVN: r162622
This commit is contained in:
parent
c2cf2f4a61
commit
4bcaf35411
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2010-07-28 Maxim Kuvyrkov <maxim@codesourcery.com>
|
||||
|
||||
PR rtl-optimization/45101
|
||||
* gcse.c (hash_scan_set): Fix argument ordering of insert_expr_in_table
|
||||
for gcse-las.
|
||||
|
||||
2010-07-28 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
PR tree-optimization/44885
|
||||
|
|
|
@ -1503,8 +1503,8 @@ hash_scan_set (rtx pat, rtx insn, struct hash_table_d *table)
|
|||
&& ! JUMP_P (insn);
|
||||
|
||||
/* Record the memory expression (DEST) in the hash table. */
|
||||
insert_expr_in_table (dest, GET_MODE (dest), insn, 0,
|
||||
antic_p, avail_p, table);
|
||||
insert_expr_in_table (dest, GET_MODE (dest), insn,
|
||||
antic_p, avail_p, 0, table);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue