Commit 3458c61f by Jakub Jelinek Committed by Jakub Jelinek

predict.c (test_prediction_value_range): Use PROB_UNINITIALIZED instead of -1U…

predict.c (test_prediction_value_range): Use PROB_UNINITIALIZED instead of -1U in last predictors element's probability...

	* predict.c (test_prediction_value_range): Use PROB_UNINITIALIZED
	instead of -1U in last predictors element's probability member.

From-SVN: r258136
parent 2265b6fe
2018-03-02 Jakub Jelinek <jakub@redhat.com>
* predict.c (test_prediction_value_range): Use PROB_UNINITIALIZED
instead of -1U in last predictors element's probability member.
2018-03-02 Eric Botcazou <ebotcazou@adacore.com> 2018-03-02 Eric Botcazou <ebotcazou@adacore.com>
PR ipa/83983 PR ipa/83983
......
...@@ -4204,7 +4204,7 @@ test_prediction_value_range () ...@@ -4204,7 +4204,7 @@ test_prediction_value_range ()
{ {
branch_predictor predictors[] = { branch_predictor predictors[] = {
#include "predict.def" #include "predict.def"
{NULL, -1U} { NULL, PROB_UNINITIALIZED }
}; };
for (unsigned i = 0; predictors[i].name != NULL; i++) for (unsigned i = 0; predictors[i].name != NULL; i++)
......
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