PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr46499-2.c
blobc3a264816d3fbce2e186908d816cf5dfe6feee55
1 /* PR middle-end/46499 */
2 /* { dg-do compile } */
3 /* { dg-options "-O -fno-tree-ccp -fno-tree-dominator-opts" } */
5 extern void abort (void);
7 static inline int
8 foo (void)
10 return 0;
13 int
14 main ()
16 if ((foo () == 1) & (foo () == 1))
17 abort ();
18 return 0;