(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
s390/
ashr.c
       1  /* Test the arithmetic shift right pattern.  */
       2  
       3  /* { dg-do compile } */
       4  /* { dg-options "-O2" } */
       5  
       6  int e(void);
       7  
       8  int f (long c, int b)
       9  {
      10    return (c >> b) && e ();
      11  }