blob: a88587a960de26811cbf3df6ff6553efd228822e [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3/* GCC wasn't handling 64 bit constants right fixed */
4
Matthijs Kooijmanb0bf82d2008-06-10 14:37:44 +00005#include <stdio.h>
6
7int main() {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008 long long Var = 123455678902ll;
9 printf("%lld\n", Var);
10}