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
match: Fix comment for `X != 0 ? X + ~0 : 0` transformation
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr83448.c
blob
9f0d9aca4ebe634390a347d108f4aaa27a31130a
1
/* PR c/83448 */
2
3
char
*
a
;
4
int
b
;
5
6
void
7
foo
(
void
)
8
{
9
for
(;;)
10
{
11
if
(
b
<
0
)
12
foo
();
13
__builtin_snprintf
(
a
,
b
,
"%*s"
,
b
,
""
);
14
}
15
}