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
PR target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr55934.c
blob
0145b2b391b0930aefc141fff832b4e6273a1223
1
/* PR inline-asm/55934 */
2
/* { dg-do compile } */
3
/* { dg-options "-std=c99 -msse" } */
4
_Complex
float
5
foo
(
void
)
6
{
7
_Complex
float
x
;
8
__asm
(
""
:
"=x"
(
x
));
/* { dg-error "inconsistent .* constraint" } */
9
return
x
;
10
}