Sign in
qemu
/
meson
/
7b43a2e19613f3702935872b21b1020f7d8c6a9b
/
.
/
test cases
/
common
/
118 llvm ir and assembly
/
main.c
blob: 35e8ed623bb5dae4d6b3decddb95f3f4736fb72a [
file
] [
log
] [
blame
]
#include
<stdio.h>
unsigned
square_unsigned
(
unsigned
a
);
int
main
(
void
)
{
unsigned
int
ret
=
square_unsigned
(
2
);
if
(
ret
!=
4
)
{
printf
(
"Got %u instead of 4\n"
,
ret
);
return
1
;
}
return
0
;
}