Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
c06fe8a5ac41ff407af25395f58d15c650f5b266
/
.
/
test
/
CFrontend
/
2002-02-18-64bitConstant.c
blob: 6fd3e29d24299cc32ab9744bc8c028911a802fa1 [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
/* GCC wasn't handling 64 bit constants right fixed */
void
main
()
{
long
long
Var
=
123455678902ll
;
printf
(
"%lld\n"
,
Var
);
}