mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
b971ece3f1
llvm-svn: 1775
8 lines
130 B
C
8 lines
130 B
C
/* GCC wasn't handling 64 bit constants right fixed */
|
|
|
|
void main() {
|
|
long long Var = 123455678902ll;
|
|
printf("%lld\n", Var);
|
|
|
|
}
|