[PATCH] D122893: [Support] [BLAKE3] Remove .hidden directives from windows-gnu assembly sources
Martin Storsjö via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sat Apr 2 14:04:26 PDT 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGd0abdc22b877: [Support] [BLAKE3] Remove .hidden directives from windows-gnu assembly sources (authored by mstorsjo).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D122893/new/
https://reviews.llvm.org/D122893
Files:
llvm/lib/Support/BLAKE3/blake3_avx2_x86-64_windows_gnu.S
llvm/lib/Support/BLAKE3/blake3_avx512_x86-64_windows_gnu.S
llvm/lib/Support/BLAKE3/blake3_sse2_x86-64_windows_gnu.S
llvm/lib/Support/BLAKE3/blake3_sse41_x86-64_windows_gnu.S
Index: llvm/lib/Support/BLAKE3/blake3_sse41_x86-64_windows_gnu.S
===================================================================
--- llvm/lib/Support/BLAKE3/blake3_sse41_x86-64_windows_gnu.S
+++ llvm/lib/Support/BLAKE3/blake3_sse41_x86-64_windows_gnu.S
@@ -1,10 +1,4 @@
.intel_syntax noprefix
-.hidden blake3_hash_many_sse41
-.hidden _blake3_hash_many_sse41
-.hidden blake3_compress_in_place_sse41
-.hidden _blake3_compress_in_place_sse41
-.hidden blake3_compress_xof_sse41
-.hidden _blake3_compress_xof_sse41
.global blake3_hash_many_sse41
.global _blake3_hash_many_sse41
.global blake3_compress_in_place_sse41
Index: llvm/lib/Support/BLAKE3/blake3_sse2_x86-64_windows_gnu.S
===================================================================
--- llvm/lib/Support/BLAKE3/blake3_sse2_x86-64_windows_gnu.S
+++ llvm/lib/Support/BLAKE3/blake3_sse2_x86-64_windows_gnu.S
@@ -1,10 +1,4 @@
.intel_syntax noprefix
-.hidden blake3_hash_many_sse2
-.hidden _blake3_hash_many_sse2
-.hidden blake3_compress_in_place_sse2
-.hidden _blake3_compress_in_place_sse2
-.hidden blake3_compress_xof_sse2
-.hidden _blake3_compress_xof_sse2
.global blake3_hash_many_sse2
.global _blake3_hash_many_sse2
.global blake3_compress_in_place_sse2
Index: llvm/lib/Support/BLAKE3/blake3_avx512_x86-64_windows_gnu.S
===================================================================
--- llvm/lib/Support/BLAKE3/blake3_avx512_x86-64_windows_gnu.S
+++ llvm/lib/Support/BLAKE3/blake3_avx512_x86-64_windows_gnu.S
@@ -1,11 +1,5 @@
.intel_syntax noprefix
-.hidden _blake3_hash_many_avx512
-.hidden blake3_hash_many_avx512
-.hidden blake3_compress_in_place_avx512
-.hidden _blake3_compress_in_place_avx512
-.hidden blake3_compress_xof_avx512
-.hidden _blake3_compress_xof_avx512
.global _blake3_hash_many_avx512
.global blake3_hash_many_avx512
.global blake3_compress_in_place_avx512
Index: llvm/lib/Support/BLAKE3/blake3_avx2_x86-64_windows_gnu.S
===================================================================
--- llvm/lib/Support/BLAKE3/blake3_avx2_x86-64_windows_gnu.S
+++ llvm/lib/Support/BLAKE3/blake3_avx2_x86-64_windows_gnu.S
@@ -1,6 +1,4 @@
.intel_syntax noprefix
-.hidden _blake3_hash_many_avx2
-.hidden blake3_hash_many_avx2
.global _blake3_hash_many_avx2
.global blake3_hash_many_avx2
.section .text
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D122893.420011.patch
Type: text/x-patch
Size: 2298 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220402/b29a849c/attachment.bin>
More information about the llvm-commits
mailing list