Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr42269-2.c
blob: a9410d442e9ea223262c0d26172b697c3d328de4 [
file
] [
log
] [
blame
]
/* Make sure that language + abi extensions in passing S interoperate. */
static
long
long
__attribute__
((
noinline
))
foo
(
unsigned
short
s
)
{
return
(
short
)
s
;
}
unsigned
short
s
=
0xFFFF
;
int
main
(
void
)
{
return
foo
(
s
)
+
1
!=
0
;
}