Re: [PATCH] Add a missing return transforming atomic bit test and operations

2021-11-15 Thread Jeff Law via Gcc-patches
On 11/15/2021 8:18 PM, H.J. Lu via Gcc-patches wrote: When failing to transform equivalent, but slighly different cases of atomic bit test and operations to their canonical forms, return immediately. gcc/ PR middle-end/103268 * tree-ssa-ccp.c (optimize_atomic_bit_test_and): A

[PATCH] Add a missing return transforming atomic bit test and operations

2021-11-15 Thread H.J. Lu via Gcc-patches
When failing to transform equivalent, but slighly different cases of atomic bit test and operations to their canonical forms, return immediately. gcc/ PR middle-end/103268 * tree-ssa-ccp.c (optimize_atomic_bit_test_and): Add a missing return. gcc/testsuite/ PR mi