diff options
Diffstat (limited to 'gcc/predict.c')
-rw-r--r-- | gcc/predict.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/predict.c b/gcc/predict.c index f8a6a11..097cfb8 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -1311,10 +1311,10 @@ tree_estimate_probability (void) care for error returns and other cases are often used for fast paths through function. - Since we've already removed the return statments, we are + Since we've already removed the return statements, we are looking for CFG like: - if (conditoinal) + if (conditional) { .. goto return_block |