blob: b7406e6822329af54e44f1038c8e8b66c1b7ffca [file] [log] [blame]
/* PR target/69247 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-additional-options "-march=zEC12" { target s390*-*-* } } */
void foo (short *);
void
bar (short x, int y)
{
if (y)
x = x << 8 | (unsigned short) x >> 8;
foo (&x);
}