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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr69936.c
blob
3023bbbb1c47e0a003430faf3ca6ba6663d845ac
1
/* { dg-do compile } */
2
3
int
a
;
4
char
b
;
5
void
fn1
(
int
p1
) {}
6
7
int
fn2
() {
return
5
; }
8
9
void
fn3
() {
10
if
(
fn2
())
11
;
12
else
{
13
char
c
[
5
];
14
c
[
0
] =
5
;
15
lbl_608
:
16
fn1
(
c
[
9
]);
17
int
d
=
c
[
9
];
18
c
[
2
] |
a
;
19
d
=
c
[
b
];
20
}
21
goto
lbl_608
;
22
}
23
24
int
main
() {
return
0
; }