repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2002-02-18-64bitConstant.c
blob
5a04be4d37f51e10596915b63ecc874ee4d754c5
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
/* GCC wasn't handling 64 bit constants right fixed */
4
5
int
printf
(
const char
*
restrict format
, ...);
6
7
int
main
(
void
) {
8
long long
Var
=
123455678902ll
;
9
printf
(
"%lld
\n
"
,
Var
);
10
}