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
* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20080114-1.c
blob
f251c22b96ee185c661d1717447a367254cd09f4
1
/* PR rtl-optimization/31944 */
2
/* Origin: Aurelien Jarno <aurelien@aurel32.net> */
3
4
int
type
;
5
6
void
stuck
(
int
res
)
7
{
8
if
(
type
==
1
) {
9
if
(
res
==
0
)
asm
volatile
(
""
);
10
}
11
else if
(
type
==
0
) {
12
if
(
res
==
0
)
asm
volatile
(
""
: :
"i"
(
0
));
13
}
14
}