| 1 | // RUN: %clang_cc1 -triple x86_64-unknown-linux -S -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s |
|---|---|
| 2 | // CHECK: !DIGlobalVariable({{.*}} |
| 3 | // CHECK-NOT: expr: |
| 4 | |
| 5 | static const __uint128_t ro = 18446744073709551615; |
| 6 | |
| 7 | void bar(__uint128_t); |
| 8 | void foo() { bar(ro); } |
| 9 |