* tree-ssa-loop-manip.c (split_loop_exit_edge): Return the new block.
[official-gcc.git] / gcc / testsuite / gcc.dg / cris-peep2-xsrand.c
blob9cfe40fb6e14616a0bb7379190d849ecdb4b1c6e
1 /* { dg-do compile { target cris-*-* } } */
2 /* { dg-final { scan-assembler "and.w " } } */
3 /* { dg-final { scan-assembler "and.b " } } */
4 /* { dg-final { scan-assembler-not "and.d" } } */
5 /* { dg-options "-O2" } */
7 /* Test the "asrandb", "asrandw", "lsrandb" and "lsrandw" peephole2:s
8 trivially. */
10 unsigned int
11 andwlsr (unsigned int x)
13 return (x >> 17) & 0x7ff;
16 unsigned int
17 andblsr (unsigned int x)
19 return (x >> 25) & 0x5f;
22 int
23 andwasr (int x)
25 return (x >> 17) & 0x7ff;
28 int
29 andbasr (int x)
31 return (x >> 25) & 0x5f;