blob: d8472702e9c08128f14aae0d31cc0e82a0ad1fb8 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
static inline int
min (int a, int b)
{
return a < b ? a : b;
}
int
test_00 (int a)
{
return min (a, a + 8);
}
int
test_01 (int a)
{
return min (a, a - 8);
}
/* { dg-final { scan-tree-dump-not "MIN_EXPR" "optimized" } } */