xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-large-constant.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -g -triple=x86_64-apple-darwin %s -o /dev/null
2 // PR 8913
3 
4 typedef __uint128_t word128;
5 static const word128 m126 = 0xffffffffffffffffULL;
foo()6 word128 foo() {
7   return m126;
8 }
9