1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Test functioning of command option -mno-isel */ /* { dg-do compile { target powerpc*-*-linux* } } */ /* { dg-options "-O2 -mno-isel" } */ /* { dg-final { scan-assembler-not "isel" } } */ int foo (int x, int y) { if (x < y) return x; else return y; }