Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / e500-1.c
blob76a0e4a220563d8098dd575e30f53d5e50af6785
1 /* Test functioning of command option -mno-isel */
2 /* { dg-do compile { target powerpc*-*-linux* } } */
3 /* { dg-options "-O2 -mno-isel" } */
5 /* { dg-final { scan-assembler-not "isel" } } */
7 int
8 foo (int x, int y)
10 if (x < y)
11 return x;
12 else
13 return y;