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.dg/const-elim-1.c: Remove xfail for xtensa-*-*.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
asm-8.c
blob
a3f3962eb16d897074ca94a067bbd77fbc00440d
1
/* PR inline-asm/11676 */
2
/* { dg-do compile } */
3
/* { dg-options "-O -Wall" } */
4
5
void
foo
(
void
)
6
{
7
long
x
=
0
;
8
asm
volatile
(
""
:
"=r"
(
x
) :
"r"
(
x
));
/* { dg-bogus "uninitialized" } */
9
}