Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.target / i386 / pr55934.c
1 /* PR inline-asm/55934 */
2 /* { dg-do compile } */
3 /* { dg-require-effective-target sse } */
4 /* { dg-options "-std=c99 -msse" } */
5 _Complex float
6 foo (void)
7 {
8   _Complex float x;
9   __asm ("" : "=x" (x)); /* { dg-error "inconsistent .* constraint" } */
10   return x;
11 }