forked from OSchip/llvm-project
[Support] [BLAKE3] Remove .hidden directives from windows-gnu assembly sources
COFF symbols don't have anything corresponding to a `.hidden` flag;
both GNU binutils as and LLVM's built-in assembler errors out on
these directives.
This reverts one part of
7f05aa2d4c
, fixing builds for
mingw x86_64.
Differential Revision: https://reviews.llvm.org/D122893
This commit is contained in:
parent
95b2aa511e
commit
d0abdc22b8
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue