view gcc/testsuite/gcc.dg/tree-ssa/pr79448-2.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* PR middle-end/79448 - unhelpful -Wformat-truncation=2 warning
   Verify that there's no warning with optimization.
   { dg-do compile }
   { dg-options "-O2 -Wall -Wformat -Wformat-truncation=2" } */

typedef __SIZE_TYPE__ size_t;

extern int
snprintf (char*, size_t, const char*, ...);

char*
gettext (char*);

char*
fill (char *buf, size_t len, int count)
{
  if (snprintf (buf, len, "%s: %d", gettext ("count"), count) >= len)  /* { dg-bogus "directive output of 2 bytes causes result to exceed .INT_MAX." */
    return 0;

  return buf;
}