PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / fold-abs-3.c
blobfcbcb4bde08ff91da896652b1ee23004cf9ee20a
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-tree-gimple -fwrapv" } */
3 #define ABS(x) (x > 0 ? x : -x)
4 int f (int a) {
5 return ABS (ABS(a));
8 /* { dg-final { scan-tree-dump-times "ABS" 1 "gimple" } } */