diff options
author | Jakub Jelinek <jakub@redhat.com> | 2013-05-13 13:04:26 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2013-05-13 13:04:26 +0200 |
commit | ae6fa899e7000352aa8573a23b1e92c225337ea1 (patch) | |
tree | 6346bea605532f76d3b46ee9bfb0d6588ee811de /gcc/testsuite/c-c++-common/rotate-5.c | |
parent | 4502fe8dfcb1cc2c59b50b868ac75fb5cdd742fc (diff) | |
download | gcc-ae6fa899e7000352aa8573a23b1e92c225337ea1.zip gcc-ae6fa899e7000352aa8573a23b1e92c225337ea1.tar.gz gcc-ae6fa899e7000352aa8573a23b1e92c225337ea1.tar.bz2 |
re PR tree-optimization/45216 (Rotate expressions not recognized at tree level)
PR tree-optimization/45216
PR tree-optimization/57157
* tree-ssa-forwprop.c (simplify_rotate): Only recognize
the (-Y) & (B - 1) variant if OP is |.
* expmed.c (expand_shift_1): For rotations by const0_rtx just
return shifted. Use (-op1) & (prec - 1) as other_amount
instead of prec - op1.
* c-c++-common/rotate-1.c: Add 32 tests with +.
* c-c++-common/rotate-1a.c: Adjust.
* c-c++-common/rotate-2.c: Add 32 tests with +, expect
only 48 rotates.
* c-c++-common/rotate-2b.c: New test.
* c-c++-common/rotate-3.c: Add 32 tests with +.
* c-c++-common/rotate-4.c: Add 32 tests with +, expect
only 48 rotates.
* c-c++-common/rotate-4b.c: New test.
* c-c++-common/rotate-5.c: New test.
From-SVN: r198823
Diffstat (limited to 'gcc/testsuite/c-c++-common/rotate-5.c')
-rw-r--r-- | gcc/testsuite/c-c++-common/rotate-5.c | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/gcc/testsuite/c-c++-common/rotate-5.c b/gcc/testsuite/c-c++-common/rotate-5.c new file mode 100644 index 0000000..35b14b8 --- /dev/null +++ b/gcc/testsuite/c-c++-common/rotate-5.c @@ -0,0 +1,43 @@ +/* { dg-do run } */ +/* { dg-options "-O2" } */ + +extern +#ifdef __cplusplus +"C" +#endif +void abort (void); + +#if __CHAR_BIT__ * __SIZEOF_LONG_LONG__ == 64 +__attribute__((noinline, noclone)) +unsigned long long +f1 (unsigned long long x, unsigned int y) +{ + return (x << y) | (x >> ((-y) & 63)); +} + +#if __CHAR_BIT__ * __SIZEOF_INT128__ == 128 +__attribute__((noinline, noclone)) +unsigned __int128 +f2 (unsigned __int128 x, unsigned int y) +{ + return (x << y) | (x >> ((-y) & 128)); +} +#endif +#endif + +int +main () +{ +#if __CHAR_BIT__ * __SIZEOF_LONG_LONG__ == 64 + if (f1 (0x123456789abcdef0ULL, 0) != 0x123456789abcdef0ULL) + abort (); +#if __CHAR_BIT__ * __SIZEOF_INT128__ == 128 + if (f2 ((((unsigned __int128) 0x123456789abcdef0ULL) << 64) + | 0x0fedcba987654321ULL, 0) + != ((((unsigned __int128) 0x123456789abcdef0ULL) << 64) + | 0x0fedcba987654321ULL)) + abort (); +#endif +#endif + return 0; +} |