PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / gimplefe-11.c
blobe1483f4c360c8dab9b9d80e4e04f4f322258138f
1 /* { dg-do compile } */
2 /* { dg-options "-fgimple" } */
4 void __GIMPLE() bar(int a, int b, int c)
6 a = 1;
7 b = a + 1;
8 c = b * 4;
9 return;
12 void __GIMPLE() foo()
14 int a;
15 int b;
16 int c;
17 bar(a, b, c);