Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20041124-1.c
blob: 51ce2536ea9c4c06393d11332d8e5b2a1cf18151 [
file
] [
log
] [
blame
]
struct
s
{
_Complex
unsigned
short
x
;
};
struct
s gs
=
{
100
+
200i
};
struct
s __attribute__
((
noinline
))
foo
(
void
)
{
return
gs
;
}
int
main
()
{
if
(
foo
().
x
!=
gs
.
x
)
abort
();
exit
(
0
);
}