xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-large-constant.cpp (revision 83ee113ee0d94f3844d44065af2311604e9a30ad)
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;
6 word128 foo() {
7   return m126;
8 }
9