xref: /aosp_15_r20/external/clang/test/CodeGenCXX/debug-info-large-constant.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li // RUN: %clang_cc1 -debug-info-kind=limited -triple=x86_64-apple-darwin %s -o /dev/null
2*67e74705SXin Li // PR 8913
3*67e74705SXin Li 
4*67e74705SXin Li typedef __uint128_t word128;
5*67e74705SXin Li static const word128 m126 = 0xffffffffffffffffULL;
foo()6*67e74705SXin Li word128 foo() {
7*67e74705SXin Li   return m126;
8*67e74705SXin Li }
9