Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGen / 2002-02-18-64bitConstant.c
blob5a04be4d37f51e10596915b63ecc874ee4d754c5
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
3 /* GCC wasn't handling 64 bit constants right fixed */
5 int printf(const char * restrict format, ...);
7 int main(void) {
8 long long Var = 123455678902ll;
9 printf("%lld\n", Var);