Commit 4bcaf354 by Maxim Kuvyrkov Committed by Maxim Kuvyrkov

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
parent c2cf2f4a
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);
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment