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
/
pr54127.c
blob
4f64998af0a0cf3cf20ed61e53ea7e5f115a0c1f
1
/* PR rtl-optimization/54127 */
2
/* { dg-do compile } */
3
4
extern
void
foo
(
void
)
__attribute__
((
__noreturn__
));
5
6
void
7
bar
(
int
x
)
8
{
9
if
(
x
<
0
)
10
foo
();
11
if
(
x
==
0
)
12
return
;
13
__asm
goto
(
"# %l[lab] %l[lab2]"
: : : :
lab
,
lab2
);
14
lab
:;
15
lab2
:;
16
}