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

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;
}