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
Dead
[official-gcc.git]
/
gomp-20050608-branch
/
gcc
/
testsuite
/
g++.dg
/
opt
/
asm1.C
blob
333533526ba0bd6a5ab782c378abebd50bf15e75
1
// PR c++/6747
2
// { dg-do compile }
3
// { dg-options "-O" }
4
5
void foo()
6
{
7
union { double d; char c[sizeof(double)]; } tmp;
8
__asm__ ("" : "=m" (tmp.d)); // { dg-bogus "not directly addressable" "double sized union element should be addressible" { xfail xstormy16-*-* } }
9
}