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
2015-12-10 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr61801.c
blob
d0d08ccb40135db72ad9346fb7afcbc6f499fc6f
1
/* PR rtl-optimization/61801 */
2
/* { dg-do compile } */
3
/* { dg-options "-Os -fcompare-debug" } */
4
5
int
a
,
c
;
6
int
bar
(
void
);
7
void
baz
(
void
);
8
9
void
10
foo
(
void
)
11
{
12
int
d
;
13
if
(
bar
())
14
{
15
int
e
;
16
baz
();
17
asm
volatile
(
""
:
"=a"
(
e
) :
"0"
(
a
),
"i"
(
0
));
18
d
=
e
;
19
}
20
c
=
d
;
21
}