aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-5.c
blob: 2a6739ec2f330dbc8f6075145cec43310f04e01d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* PR bootstrap/77676 - powerpc64 and powerpc64le stage2 bootstrap fail
   Test case from comment 6 on the bug.  */
/* { dg-do compile } */
/* { dg-options "-Wall -Werror" } */

struct A
{
  const char *a;
  int b;
  const char *c;
};

void bar (char *);

void
foo (struct A *p)
{
  char s[4096];
  const char *u = p->a;
  const char *t;
  while ((t = __builtin_strstr (u, "gcc/")))
    u = t + 4;

  /* Verfiy the following doesn't emit a warning.  */
  __builtin_sprintf (s, "%s:%i (%s)", u, p->b, p->c);
  bar (s);
}