Commit 8ee2bec9 by Alexandre Oliva Committed by Jakub Jelinek

re PR debug/41739 (Failed to bootstrap on Linux/ia64)

	PR debug/41739
	* haifa-sched.c (try_ready): Skip debug deps updating speculation
	status.

From-SVN: r153017
parent b78cd885
2009-10-20 Alexandre Oliva <aoliva@redhat.com>
PR debug/41739
* haifa-sched.c (try_ready): Skip debug deps updating speculation
status.
2009-10-20 Richard Guenther <rguenther@suse.de>
* ggc-page.c: Include cfgloop.h.
......@@ -3754,6 +3754,10 @@ try_ready (rtx next)
{
ds_t ds = DEP_STATUS (dep) & SPECULATIVE;
if (DEBUG_INSN_P (DEP_PRO (dep))
&& !DEBUG_INSN_P (next))
continue;
if (first_p)
{
first_p = false;
......
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