PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr20130-1.c
blob43ba57b62cca4466b73d34941fb7f5c61abb9db3
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-tree-gimple" } */
3 int z (int a) {
4 return a * -1;
7 int x (int a) {
8 return -1 * a;
11 int y (int a) {
12 return -(-1 * -a);
14 /* { dg-final { scan-tree-dump-times "-a" 3 "gimple" } } */