repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr78605.c
blob
141a12c3fd1f4d2b82558ba621d30b4887790ef8
1
/* PR middle-end/78605 - bogus -Wformat-overflow=1 with %f
2
{ dg-do compile }
3
{ dg-options "-O2 -Wall -Wextra -Wformat-overflow=1" } */
4
5
char
d
[
10
];
6
7
int
f
(
int
i
)
8
{
9
return
__builtin_sprintf
(
d
,
"%i %i"
,
i
,
i
);
10
}
11
12
int
g
(
float
f
)
13
{
14
return
__builtin_sprintf
(
d
,
"%.2f %.2f"
,
f
,
f
);
15
}