[PATCH] Restore can_be_invalidated_p semantics to before refactoring

2021-11-25 Thread Richard Biener via Gcc-patches
This restores the semantics of can_be_invalidated_p to the original semantics of the function this was split out from tree-ssa-uninit.c. The current semantics only ever look at the first predicate which cannot be correct. Bootstrapped and tested on x86_64-unknown-linux-gnu, OK? Thanks, Richard.

Re: [PATCH] Restore can_be_invalidated_p semantics to before refactoring

2021-11-28 Thread Jeff Law via Gcc-patches
On 11/26/2021 12:53 AM, Richard Biener via Gcc-patches wrote: This restores the semantics of can_be_invalidated_p to the original semantics of the function this was split out from tree-ssa-uninit.c. The current semantics only ever look at the first predicate which cannot be correct. Bootstrap