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
RISC-V: Add support for riscv-*-*.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20011205-1.c
blob
ffc5ac419ea43a1f56b9d08d5992928e0db56a55
1
/* Failure to mark_addressable all operands before evaluation means we
2
don't set up the proper temporaries, which leaves us with an asm that
3
doesn't match its contraints. */
4
5
long
foo
()
6
{
7
long
x
;
8
asm
(
""
:
"=r"
(
x
) :
"m"
(
x
));
9
return
x
;
10
}