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
This commit is contained in:
Volker Reichelt 2006-08-26 00:17:10 +00:00 committed by Volker Reichelt
parent 4c923c2847
commit 75a83c65c0
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
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>
PR c/27893

View File

@ -490,7 +490,7 @@ verify_wide_reg (int regno, basic_block bb)
fprintf (dump_file, "Register %d died unexpectedly.\n", regno);
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
@ -515,7 +515,7 @@ verify_local_live_at_start (regset new_live_at_start, basic_block bb)
fputs ("Old:\n", dump_file);
dump_bb (bb, dump_file, 0);
}
fatal_error ("internal consistency failure");
internal_error ("internal consistency failure");
}
}
else
@ -537,7 +537,7 @@ verify_local_live_at_start (regset new_live_at_start, basic_block bb)
"Register %d died unexpectedly.\n", i);
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_wide_reg (i, bb);