diff options
Diffstat (limited to 'gcc/tree-call-cdce.c')
-rw-r--r-- | gcc/tree-call-cdce.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-call-cdce.c b/gcc/tree-call-cdce.c index f0b3ce7..5a6a4cf 100644 --- a/gcc/tree-call-cdce.c +++ b/gcc/tree-call-cdce.c @@ -76,7 +76,7 @@ along with GCC; see the file COPYING3. If not see An actual simple example is : log (x); // Mostly dead call ==> - if (x < 0) + if (x <= 0) log (x); With this change, call to log (x) is effectively eliminated, as in majority of the cases, log won't be called with x out of |