Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
cac731ecbe6a80e0c607ece2833525a92601db99
/
.
/
test
/
CFrontend
/
2002-02-18-64bitConstant.c
blob: 3c3a6034864e24c916a7e147a3bc2e522f3fa01a [
file
] [
log
] [
blame
]
/* GCC wasn't handling 64 bit constants right fixed */
void
main
()
{
long
long
Var
=
123455678902ll
;
printf
(
"%lld\n"
,
Var
);
}