1/* This used to fail due to bug in the On constraint causing a slgfi
2   to be emitted with an immediate not fitting into 32bit.  */
3
4/* { dg-do compile } */
5/* { dg-options "-O3 -march=z9-109" } */
6
7long
8foo (long a)
9{
10  return a - (1ULL << 32);
11}
12