blob: 8cffdfa9a1d679396ba1c1f7cbaedea027aab77c [file] [log] [blame]
/* Test the arithmetic shift right pattern. */
/* { dg-do compile } */
/* { dg-options "-O2" } */
int e(void);
int f (long c, int b)
{
return (c >> b) && e ();
}