adenilson / rpms / zlib

Forked from rpms/zlib 8 months ago
Clone
8cf299
From 480b65cae6c20a41aa698a6c9d3b260f6f744004 Mon Sep 17 00:00:00 2001
8cf299
From: Ilya Leoshkevich <iii@linux.ibm.com>
8cf299
Date: Thu, 2 Feb 2023 19:41:32 +0100
8cf299
Subject: [PATCH] 0003-PATCH-Fix-clang-s-behavior-on-versions-7.patch
8cf299
8cf299
---
8cf299
 contrib/power/clang_workaround.h | 15 ++++++++++-----
8cf299
 1 file changed, 10 insertions(+), 5 deletions(-)
8cf299
8cf299
diff --git a/contrib/power/clang_workaround.h b/contrib/power/clang_workaround.h
8cf299
index b5e7dae..915f7e5 100644
8cf299
--- a/contrib/power/clang_workaround.h
8cf299
+++ b/contrib/power/clang_workaround.h
8cf299
@@ -39,7 +39,12 @@ __vector unsigned long long  __builtin_pack_vector (unsigned long __a,
8cf299
 	return __v;
8cf299
 }
8cf299
 
8cf299
-#ifndef vec_xxpermdi
8cf299
+/*
8cf299
+ * Clang 7 changed the behavior of vec_xxpermdi in order to provide the same
8cf299
+ * behavior of GCC. That means code adapted to Clang >= 7 does not work on
8cf299
+ * Clang <= 6.  So, fallback to __builtin_unpack_vector() on Clang <= 6.
8cf299
+ */
8cf299
+#if !defined vec_xxpermdi || __clang_major__ <= 6
8cf299
 
8cf299
 static inline
8cf299
 unsigned long __builtin_unpack_vector (__vector unsigned long long __v,
8cf299
@@ -62,9 +67,9 @@ static inline
8cf299
 unsigned long __builtin_unpack_vector_0 (__vector unsigned long long __v)
8cf299
 {
8cf299
 	#if defined(__BIG_ENDIAN__)
8cf299
-	return vec_xxpermdi(__v, __v, 0x0)[1];
8cf299
-	#else
8cf299
 	return vec_xxpermdi(__v, __v, 0x0)[0];
8cf299
+	#else
8cf299
+	return vec_xxpermdi(__v, __v, 0x3)[0];
8cf299
 	#endif
8cf299
 }
8cf299
 
8cf299
@@ -72,9 +77,9 @@ static inline
8cf299
 unsigned long __builtin_unpack_vector_1 (__vector unsigned long long __v)
8cf299
 {
8cf299
 	#if defined(__BIG_ENDIAN__)
8cf299
-	return vec_xxpermdi(__v, __v, 0x3)[1];
8cf299
-	#else
8cf299
 	return vec_xxpermdi(__v, __v, 0x3)[0];
8cf299
+	#else
8cf299
+	return vec_xxpermdi(__v, __v, 0x0)[0];
8cf299
 	#endif
8cf299
 }
8cf299
 #endif /* vec_xxpermdi */
8cf299
-- 
8cf299
2.39.1
8cf299