aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/misc.cc
diff options
context:
space:
mode:
authorRichard Sandiford <richard.sandiford@arm.com>2024-10-24 14:22:33 +0100
committerRichard Sandiford <richard.sandiford@arm.com>2024-10-24 14:22:33 +0100
commitaf19e46c88fd75e31127cde239b8f28d8f9c4040 (patch)
treec4d249e8c6d45031aacf92945a07cc5d8501abd8 /gcc/fortran/misc.cc
parentd6c4badffafa295f6082b7d74de314e131f30a96 (diff)
downloadgcc-af19e46c88fd75e31127cde239b8f28d8f9c4040.zip
gcc-af19e46c88fd75e31127cde239b8f28d8f9c4040.tar.gz
gcc-af19e46c88fd75e31127cde239b8f28d8f9c4040.tar.bz2
Try to simplify (X >> C1) * (C2 << C1) -> X * C2
This patch adds a rule to simplify (X >> C1) * (C2 << C1) -> X * C2 when the low C1 bits of X are known to be zero. As with the earlier X >> C1 << (C2 + C1) patch, any single conversion is allowed between the shift and the multiplication. gcc/ * match.pd: Simplify (X >> C1) * (C2 << C1) -> X * C2 if the low C1 bits of X are zero. gcc/testsuite/ * gcc.dg/tree-ssa/shifts-3.c: New test. * gcc.dg/tree-ssa/shifts-4.c: Likewise. * gcc.target/aarch64/sve/cnt_fold_5.c: Likewise.
Diffstat (limited to 'gcc/fortran/misc.cc')
0 files changed, 0 insertions, 0 deletions