diff options
| author | Paul Kirth <paulkirth@google.com> | 2025-07-16 09:31:08 -0700 |
|---|---|---|
| committer | Paul Kirth <paulkirth@google.com> | 2025-07-16 09:31:08 -0700 |
| commit | 584512a4f845111d46c93649b0d60b64fe2128b4 (patch) | |
| tree | 50aac2b8c5ecffeaf54d95d88c849aae0458e57b | |
| parent | 9f2039755fc8a872d0a768581b5a09340a4f30be (diff) | |
[llvm][blake3] Prefix blake3_hash4_neonusers/ilovepi/blake3-neon
In #147948 blake3_hash4_neon became a public symbol (no longer static).
Like other APIs introduced, it was not prefixed, resulting in conflicts if
libblake3 and LLVM are both linked statically into the same binary.
| -rw-r--r-- | llvm/lib/Support/BLAKE3/llvm_blake3_prefix.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/BLAKE3/llvm_blake3_prefix.h b/llvm/lib/Support/BLAKE3/llvm_blake3_prefix.h index d24657465dd8..efdd65b692fb 100644 --- a/llvm/lib/Support/BLAKE3/llvm_blake3_prefix.h +++ b/llvm/lib/Support/BLAKE3/llvm_blake3_prefix.h @@ -41,5 +41,6 @@ #define blake3_hash_many_avx512 llvm_blake3_hash_many_avx512 #define _blake3_hash_many_avx512 _llvm_blake3_hash_many_avx512 #define blake3_hash_many_neon llvm_blake3_hash_many_neon +#define blake3_hash4_neon llvm_blake3_hash4_neon #endif /* LLVM_BLAKE3_PREFIX_H */ |
