[LV] Add test showing debug output for loops with uncountable BTCs.
[llvm-project.git] / clang / test / CodeGen / dbg-const-int128.c
blob7f8aaef5a08d8a6c86493e48e62521efe3091e36
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:
6 static const __uint128_t ro = 18446744073709551615;
8 void bar(__uint128_t);
9 void foo(void) { bar(ro); }