blob: 504875a794555f7829217207510a063eaad902c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* PR middle-end/79448 - unhelpful -Wformat-truncation=2 warning
Verify that there's no warning without optimization.
{ dg-do compile }
{ dg-options "-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;
}
|