xref: /llvm-project/clang/test/CodeGen/dbg-const-int128.c (revision c5de4dd1eab00df76c1a68c5f397304ceacb71f2)
1 // RUN: %clang_cc1 -triple x86_64-unknown-linux -emit-llvm -debug-info-kind=limited  %s -o - | FileCheck %s
2 // RUN: %clang_cc1 -triple powerpc64-ibm-aix-xcoff -emit-llvm -debug-info-kind=limited  %s -o - | FileCheck %s
3 // CHECK: !DIGlobalVariable({{.*}}
4 // CHECK-NOT: expr:
5 
6 static const __uint128_t ro = 18446744073709551615;
7 
8 void bar(__uint128_t);
foo(void)9 void foo(void) { bar(ro); }
10