Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
090516fe932ad4ed14b72ea27017aeb4a15cb15c
/
.
/
llvm
/
test
/
Regression
/
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
);
}