blob: 966c227055009272009f1cb26338348d3b49aaec [file] [log] [blame]
Peter Collingbournedf86d1a2016-12-16 23:43:51 +00001// RUN: %clang_cc1 -triple x86_64-unknown-linux -S -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
Peter Collingbourneb7013632016-12-16 22:10:52 +00002// CHECK: !DIGlobalVariable({{.*}}
3// CHECK-NOT: expr:
4
5static const __uint128_t ro = 18446744073709551615;
6
7void bar(__uint128_t);
8void foo() { bar(ro); }