Sign in
fuchsia
/
third_party
/
llvm-test-suite
/
b7ba2103c1cfdb7e717a8d02a58b1452aef0b636
/
.
/
SingleSource
/
UnitTests
/
2002-08-02-CastTest2.c
blob: eb4dc48e84b05a0a7476eb8989140a7ed69543f7 [
file
] [
log
] [
blame
]
int
printf
(
const
char
*,
...);
void
test
(
short
s1
)
{
unsigned
short
us2
=
(
unsigned
short
)
s1
;
/* 0xf7ff = 64767 */
printf
(
"s1 = %d\n"
,
s1
);
printf
(
"us2 = %u\n"
,
us2
);
}
int
main
()
{
test
(-
769
);
return
0
;
}