forked from OSchip/llvm-project
Disable the new enum i128 test under ASan, it uncovers an existing leak
See llvm.org/pr51221
This commit is contained in:
parent
3c3269559b
commit
a9b114c5dd
|
@ -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; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue