1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

New testcase

llvm-svn: 1775
This commit is contained in:
Chris Lattner 2002-02-18 19:46:09 +00:00
parent 801f59eb1f
commit b971ece3f1

View File

@ -0,0 +1,7 @@
/* GCC wasn't handling 64 bit constants right fixed */
void main() {
long long Var = 123455678902ll;
printf("%lld\n", Var);
}