PR c/83448
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr83448.c
blob9f0d9aca4ebe634390a347d108f4aaa27a31130a
1 /* PR c/83448 */
3 char *a;
4 int b;
6 void
7 foo (void)
9 for (;;)
11 if (b < 0)
12 foo ();
13 __builtin_snprintf (a, b, "%*s", b, "");