PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / arm / minmax_minus.c
blob906342a87cfe7f47b56b61363775ae5c88a2fdc9
1 /* { dg-do compile } */
2 /* { dg-require-effective-target arm_cond_exec } */
3 /* { dg-options "-O2" } */
5 #define MAX(a, b) (a > b ? a : b)
6 int
7 foo (int a, int b, int c)
9 return c - MAX (a, b);
12 /* { dg-final { scan-assembler-not "mov" } } */