summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr78965.c
blob: 43da70b29e15728d220e08ca55772e568c76c26d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR tree-optimization/78965 */
/* { dg-do run { target c99_runtime } } */
/* { dg-options "-O2" } */

int
main ()
{
  int a = 5, b = 6;
  int c = __builtin_snprintf (0, 0, "a%nb%nc", &a, &b);
  if (a + b + c != 6)
    __builtin_abort ();
  return 0;
}