From 3458c61f6c864a67f736839af2b8b8308f66da81 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Fri, 2 Mar 2018 16:10:10 +0100 Subject: 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 --- gcc/predict.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/predict.c') diff --git a/gcc/predict.c b/gcc/predict.c index 79ee71f..b40dec4 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -4204,7 +4204,7 @@ test_prediction_value_range () { branch_predictor predictors[] = { #include "predict.def" - {NULL, -1U} + { NULL, PROB_UNINITIALIZED } }; for (unsigned i = 0; predictors[i].name != NULL; i++) -- cgit v1.1