llvm-project/clang/test/CodeGenCXX/debug-info-enum-i128.cpp
Jinsong Ji 42eea2b69b [AIX] Enable int128 in 64 bit mode
This patch remove the override in AIX target,
so the int128 is enabled in 64 bit mode or with ForceEnableInt128.

Reviewed By: lkail

Differential Revision: https://reviews.llvm.org/D111078
2021-10-15 16:23:04 +00:00

20 lines
918 B
C++

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