diff options
Diffstat (limited to 'gcc/tree-ssa-operands.c')
-rw-r--r-- | gcc/tree-ssa-operands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c index 55cebf2..68acd7c 100644 --- a/gcc/tree-ssa-operands.c +++ b/gcc/tree-ssa-operands.c @@ -1411,7 +1411,7 @@ get_call_expr_operands (tree stmt, tree expr) get_expr_operands (stmt, &TREE_OPERAND (expr, 2), opf_none); - if (bitmap_first_set_bit (call_clobbered_vars) >= 0) + if (!bitmap_empty_p (call_clobbered_vars)) { /* A 'pure' or a 'const' functions never call clobber anything. A 'noreturn' function might, but since we don't return anyway |