This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 73a8043481d match.pd: Move (X & C) eqne (Y & C) -> -> (X ^ Y) & C eqne [...] new 496f4f88471 match.pd: Decrease number of nop conversions around bitwise [...] new 6b5c7ee0df6 match.pd: Optimize (x < 0) != (y < 0) into (x ^ y) < 0 [PR94718]
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/ChangeLog | 8 ++++ gcc/match.pd | 46 +++++++++++++++++++++-- gcc/testsuite/ChangeLog | 7 ++++ gcc/testsuite/gcc.dg/tree-ssa/pr94718-3.c | 45 +++++++++++++++++++++++ gcc/testsuite/gcc.dg/tree-ssa/pr94718-4.c | 61 +++++++++++++++++++++++++++++++ gcc/testsuite/gcc.dg/tree-ssa/pr94718-5.c | 61 +++++++++++++++++++++++++++++++ 6 files changed, 225 insertions(+), 3 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr94718-3.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr94718-4.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr94718-5.c