1 // RUN: %clang_cc1 %s -triple x86_64-windows-msvc -gcodeview -debug-info-kind=limited -emit-llvm -o - | FileCheck %s
2 // RUN: %clang_cc1 %s -triple x86_64-linux-gnu -debug-info-kind=limited -emit-llvm -o - | FileCheck %s
3 // RUN: %clang_cc1 %s -triple powerpc64-ibm-aix-xcoff -debug-info-kind=limited -emit-llvm -o - | FileCheck %s
5 // FIXME: llvm.org/pr51221, the APSInt leaks
8 enum class uns
: __uint128_t
{ unsval
= __uint128_t(1) << 64 };
9 uns
t1() { return uns::unsval
; }
11 enum class sig
: __int128
{ sigval
= -(__int128(1) << 64) };
12 sig
t2() { return sig::sigval
; }
15 // CHECK-LABEL: !DICompositeType(tag: DW_TAG_enumeration_type, name: "uns", {{.*}})
16 // CHECK: !DIEnumerator(name: "unsval", value: 18446744073709551616, isUnsigned: true)
18 // CHECK-LABEL: !DICompositeType(tag: DW_TAG_enumeration_type, name: "sig", {{.*}})
19 // CHECK: !DIEnumerator(name: "sigval", value: -18446744073709551616)