diff options
author | Jan Hubicka <hubicka@gcc.gnu.org> | 2017-06-09 18:34:29 +0000 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2017-06-09 18:34:29 +0000 |
commit | d225aa745d015e453ae4d47307b486b5c21824fb (patch) | |
tree | d4536afe50e2166e47b58187361e1e569a59c478 /gcc | |
parent | e813ee348588e487e51ac05b676fd732dc0f6da5 (diff) | |
download | gcc-d225aa745d015e453ae4d47307b486b5c21824fb.zip gcc-d225aa745d015e453ae4d47307b486b5c21824fb.tar.gz gcc-d225aa745d015e453ae4d47307b486b5c21824fb.tar.bz2 |
* predict.c (unlikely_executed_stmt_p): Cleanup.
From-SVN: r249069
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/predict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/predict.c b/gcc/predict.c index 764a915..f25bbf8 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -780,7 +780,7 @@ unlikely_executed_stmt_p (gimple *stmt) { if (!is_gimple_call (stmt)) return false; - /* NORETURN attribute enough is not strong enough: exit() may be quite + /* NORETURN attribute alone is not strong enough: exit() may be quite likely executed once during program run. */ if (gimple_call_fntype (stmt) && lookup_attribute ("cold", |