1 /* { dg-do compile } */
2 /* { dg-options "-O -m8bit-idiv -fira-algorithm=priority" } */
3 /* This is the same as divmod-5.c, just with different options which
4    trigger an ICE.  We don't look at the output.  */
5 
6 extern void foo (int, int, int, int, int, int);
7 
8 void
bar(int x,int y)9 bar (int x, int y)
10 {
11   foo (0, 0, 0, 0, x / y, x % y);
12 }
13 
14