bool
infer_nonnull_range (gimple *stmt, tree op)
{
- return infer_nonnull_range_by_dereference (stmt, op)
- || infer_nonnull_range_by_attribute (stmt, op);
+ return (infer_nonnull_range_by_dereference (stmt, op)
+ || infer_nonnull_range_by_attribute (stmt, op));
}
/* Return true if OP can be inferred to be non-NULL after STMT
non-NULL if -fdelete-null-pointer-checks is enabled. */
if (!flag_delete_null_pointer_checks
|| !POINTER_TYPE_P (TREE_TYPE (op))
- || gimple_code (stmt) == GIMPLE_ASM)
+ || gimple_code (stmt) == GIMPLE_ASM
+ || gimple_clobber_p (stmt))
return false;
if (walk_stmt_load_store_ops (stmt, (void *)op,