diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2c5b123a4bb..e565b2e92e5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-01-10 Jan Hubicka + + PR lto/45375 + * lto-cgraph.c (input_profile_summary): Remove overactive sanity check. + 2011-01-10 Jan Hubicka PR lto/45375 diff --git a/gcc/lto-cgraph.c b/gcc/lto-cgraph.c index 6ca7abc052f..387e2b03e47 100644 --- a/gcc/lto-cgraph.c +++ b/gcc/lto-cgraph.c @@ -1435,9 +1435,6 @@ input_profile_summary (struct lto_input_block *ib, { file_data->profile_info.runs = runs; file_data->profile_info.sum_max = lto_input_uleb128 (ib); - if (runs > file_data->profile_info.sum_max) - fatal_error ("Corrupted profile info in %s: sum_max is smaller than runs", - file_data->file_name); } }