blob: c685698f31e5de99af1825d781ffefdb4a0cd2da (
plain)
1
2
3
4
5
6
7
8
9
|
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
int foo(int x)
{
return __builtin_ctz (__builtin_abs (x));
}
/* { dg-final { scan-tree-dump-not "ABS_EXPR" "optimized"} } */
|