diff --git a/clang/test/CodeGenCXX/debug-info-enum-i128.cpp b/clang/test/CodeGenCXX/debug-info-enum-i128.cpp index 081f21875a04eb..ca6f2f406c0559 100644 --- a/clang/test/CodeGenCXX/debug-info-enum-i128.cpp +++ b/clang/test/CodeGenCXX/debug-info-enum-i128.cpp @@ -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; }