bolt/deps/llvm-18.1.8/clang/test/CodeGen/2002-02-18-64bitConstant.c
2025-02-14 19:21:04 +01:00

10 lines
230 B
C

// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
/* GCC wasn't handling 64 bit constants right fixed */
int printf(const char * restrict format, ...);
int main(void) {
long long Var = 123455678902ll;
printf("%lld\n", Var);
}