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
c++: Fix ICE with #embed/RAW_DATA_CST after list conversion [PR118671]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr105786.c
blob
64aacf74b0a40ddd3fdcbe305ed65e97d0e2cb61
1
/* { dg-do compile } */
2
3
void
sink
(
const char
*);
4
static const char
*
a
;
5
int
main
()
6
{
7
const char
*
b
=
a
;
8
for
(
int
i
=
0
;
i
<
2
; ++
i
)
9
while
(*
b
++)
10
;
11
sink
(
b
);
12
return
0
;
13
}