[clang] 020b8e8 - [clang][test] Remove a broken bytecode test
Timm Bäder via cfe-commits
cfe-commits at lists.llvm.org
Sat Oct 5 09:46:31 PDT 2024
Author: Timm Bäder
Date: 2024-10-05T18:46:21+02:00
New Revision: 020b8e8f8dfef2392351e66215d11cccb573a88f
URL: https://github.com/llvm/llvm-project/commit/020b8e8f8dfef2392351e66215d11cccb573a88f
DIFF: https://github.com/llvm/llvm-project/commit/020b8e8f8dfef2392351e66215d11cccb573a88f.diff
LOG: [clang][test] Remove a broken bytecode test
See e.g. https://lab.llvm.org/buildbot/#/builders/13/builds/2705
Looks like the expected value is legitimately sometimes 0.
I'll add another test back later.
Added:
Modified:
clang/test/AST/ByteCode/builtins.cpp
Removed:
################################################################################
diff --git a/clang/test/AST/ByteCode/builtins.cpp b/clang/test/AST/ByteCode/builtins.cpp
index 324b8c741130c6..9b2b20773be58a 100644
--- a/clang/test/AST/ByteCode/builtins.cpp
+++ b/clang/test/AST/ByteCode/builtins.cpp
@@ -36,5 +36,3 @@ void test_builtin_os_log(void *buf, int i, const char *data) {
constexpr int len = __builtin_os_log_format_buffer_size("%d %{public}s %{private}.16P", i, data, data);
static_assert(len > 0, "Expect len > 0");
}
-
-static_assert(__builtin_omp_required_simd_align(int) != 0);
More information about the cfe-commits
mailing list