OSDN Git Service

PR c++/34774
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / opt / asm1.C
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 }