[llvm] 69d9437 - [Support/BLAKE3] Fix error in prior commit, apply `-mavx512vl` for `blake3_avx512_x86-64_unix.S` when including it
Argyrios Kyrtzidis via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 22 10:51:26 PDT 2022
Author: Argyrios Kyrtzidis
Date: 2022-06-22T10:51:19-07:00
New Revision: 69d9437472851290b5db54661c336284f7ffc9a8
URL: https://github.com/llvm/llvm-project/commit/69d9437472851290b5db54661c336284f7ffc9a8
DIFF: https://github.com/llvm/llvm-project/commit/69d9437472851290b5db54661c336284f7ffc9a8.diff
LOG: [Support/BLAKE3] Fix error in prior commit, apply `-mavx512vl` for `blake3_avx512_x86-64_unix.S` when including it
Added:
Modified:
llvm/lib/Support/BLAKE3/CMakeLists.txt
Removed:
################################################################################
diff --git a/llvm/lib/Support/BLAKE3/CMakeLists.txt b/llvm/lib/Support/BLAKE3/CMakeLists.txt
index 4fd60a99bbfb1..e5d227b0c4862 100644
--- a/llvm/lib/Support/BLAKE3/CMakeLists.txt
+++ b/llvm/lib/Support/BLAKE3/CMakeLists.txt
@@ -67,7 +67,7 @@ if (CAN_USE_ASSEMBLER)
blake3_avx512_x86-64_unix.S
)
# Clang-6 needs this flag.
- set_source_files_properties(blake3_avx512_x86-64_windows_gnu.S
+ set_source_files_properties(blake3_avx512_x86-64_unix.S
PROPERTIES COMPILE_OPTIONS "-mavx512vl")
else()
disable_blake3_x86_simd()
More information about the llvm-commits
mailing list