Author: Reid Kleckner
Date: 2021-07-26T15:48:32-07:00
New Revision: a9b114c5dd68685e0e68dd9144454b44509c2f5f

URL: 
https://github.com/llvm/llvm-project/commit/a9b114c5dd68685e0e68dd9144454b44509c2f5f
DIFF: 
https://github.com/llvm/llvm-project/commit/a9b114c5dd68685e0e68dd9144454b44509c2f5f.diff

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

See llvm.org/pr51221

Added: 
    

Modified: 
    clang/test/CodeGenCXX/debug-info-enum-i128.cpp

Removed: 
    


################################################################################
diff  --git a/clang/test/CodeGenCXX/debug-info-enum-i128.cpp 
b/clang/test/CodeGenCXX/debug-info-enum-i128.cpp
index 081f21875a04..ca6f2f406c05 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; }
 


        
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to