gcc/ChangeLog:
* ipa-modref.c (analyze_ssa_name_flags): Fix coding style
and one negated condition.
if (!record_ipa)
lattice[index].merge (call_flags);
- if (record_ipa)
+ else
lattice[index].add_escape_point (call, i,
call_flags, true);
}
int call_flags = deref_flags
(gimple_call_arg_flags (call, i), ignore_stores);
if (!record_ipa)
- lattice[index].merge (call_flags);
- if (record_ipa)
+ lattice[index].merge (call_flags);
+ else
lattice[index].add_escape_point (call, i,
call_flags, false);
}