Disable the new enum i128 test under ASan, it uncovers an existing leak

See llvm.org/pr51221
This commit is contained in:
Reid Kleckner 2021-07-26 15:47:54 -07:00
parent 3c3269559b
commit a9b114c5dd
1 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,9 @@
// 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
// FIXME: llvm.org/pr51221, the APSInt leaks
// UNSUPPORTED: asan
enum class uns : __uint128_t { unsval = __uint128_t(1) << 64 };
uns t1() { return uns::unsval; }