1 /* PR target/104775 */
2 /* { dg-do assemble { target s390_zEC12_hw } } */
3 /* { dg-options "-O2 -march=zEC12" } */
4
5 long a[64];
6 void bar (void);
7
8 void
9 foo (int x, int y)
10 {
11 if (x != a[y])
12 bar ();
13 __builtin_trap ();
14 }