aboutsummaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authorVolker Reichelt <reichelt@igpm.rwth-aachen.de>2006-08-26 00:17:10 +0000
committerVolker Reichelt <reichelt@gcc.gnu.org>2006-08-26 00:17:10 +0000
commit75a83c65c0de61d7a5a6f0d85c1a7efdf33cb9c4 (patch)
tree0ddb0893c82f2d532691caa645d22960b8cf8969 /gcc/flow.c
parent4c923c28479a212d59b96928006b6464509d918b (diff)
downloadgcc-75a83c65c0de61d7a5a6f0d85c1a7efdf33cb9c4.zip
gcc-75a83c65c0de61d7a5a6f0d85c1a7efdf33cb9c4.tar.gz
gcc-75a83c65c0de61d7a5a6f0d85c1a7efdf33cb9c4.tar.bz2
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
Diffstat (limited to 'gcc/flow.c')
-rw-r--r--gcc/flow.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index 4989db3..1adba71 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -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);