Commit 75a83c65 by Volker Reichelt Committed by Volker Reichelt

flow.c (verify_wide_reg): Use internal_error for consistency failure.

	* flow.c (verify_wide_reg): Use internal_error for consistency failure.
	(verify_local_live_at_start): Likewise.

From-SVN: r116455
parent 4c923c28
2006-08-25 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
* flow.c (verify_wide_reg): Use internal_error for consistency failure.
(verify_local_live_at_start): Likewise.
2006-08-25 Joseph S. Myers <joseph@codesourcery.com> 2006-08-25 Joseph S. Myers <joseph@codesourcery.com>
PR c/27893 PR c/27893
......
...@@ -490,7 +490,7 @@ verify_wide_reg (int regno, basic_block bb) ...@@ -490,7 +490,7 @@ verify_wide_reg (int regno, basic_block bb)
fprintf (dump_file, "Register %d died unexpectedly.\n", regno); fprintf (dump_file, "Register %d died unexpectedly.\n", regno);
dump_bb (bb, dump_file, 0); dump_bb (bb, dump_file, 0);
} }
fatal_error ("internal consistency failure"); internal_error ("internal consistency failure");
} }
/* A subroutine of update_life_info. Verify that there are no untoward /* A subroutine of update_life_info. Verify that there are no untoward
...@@ -515,7 +515,7 @@ verify_local_live_at_start (regset new_live_at_start, basic_block bb) ...@@ -515,7 +515,7 @@ verify_local_live_at_start (regset new_live_at_start, basic_block bb)
fputs ("Old:\n", dump_file); fputs ("Old:\n", dump_file);
dump_bb (bb, dump_file, 0); dump_bb (bb, dump_file, 0);
} }
fatal_error ("internal consistency failure"); internal_error ("internal consistency failure");
} }
} }
else else
...@@ -537,7 +537,7 @@ verify_local_live_at_start (regset new_live_at_start, basic_block bb) ...@@ -537,7 +537,7 @@ verify_local_live_at_start (regset new_live_at_start, basic_block bb)
"Register %d died unexpectedly.\n", i); "Register %d died unexpectedly.\n", i);
dump_bb (bb, dump_file, 0); dump_bb (bb, dump_file, 0);
} }
fatal_error ("internal consistency failure"); internal_error ("internal consistency failure");
} }
/* Verify that the now-live register is wider than word_mode. */ /* Verify that the now-live register is wider than word_mode. */
verify_wide_reg (i, bb); verify_wide_reg (i, bb);
......
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