|
|
179894 |
commit 98966749f2b418825ff2ea496a0ee89fe63d2cc8
|
|
|
179894 |
Author: Florian Weimer <fweimer@redhat.com>
|
|
|
179894 |
Date: Wed Nov 10 15:21:37 2021 +0100
|
|
|
179894 |
|
|
|
179894 |
s390: Use long branches across object boundaries (jgh instead of jh)
|
|
|
179894 |
|
|
|
179894 |
Depending on the layout chosen by the linker, the 16-bit displacement
|
|
|
179894 |
of the jh instruction is insufficient to reach the target label.
|
|
|
179894 |
|
|
|
179894 |
Analysis of the linker failure was carried out by Nick Clifton.
|
|
|
179894 |
|
|
|
179894 |
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
|
|
|
179894 |
Reviewed-by: Stefan Liebler <stli@linux.ibm.com>
|
|
|
179894 |
|
|
|
179894 |
diff --git a/sysdeps/s390/memmem-arch13.S b/sysdeps/s390/memmem-arch13.S
|
|
|
179894 |
index b59d60acf0f6aaa0..4faede0cd2f942e3 100644
|
|
|
179894 |
--- a/sysdeps/s390/memmem-arch13.S
|
|
|
179894 |
+++ b/sysdeps/s390/memmem-arch13.S
|
|
|
179894 |
@@ -41,7 +41,7 @@ ENTRY(MEMMEM_ARCH13)
|
|
|
179894 |
# error The arch13 variant of memmem needs the z13 variant of memmem!
|
|
|
179894 |
# endif
|
|
|
179894 |
clgfi %r5,9
|
|
|
179894 |
- jh MEMMEM_Z13
|
|
|
179894 |
+ jgh MEMMEM_Z13
|
|
|
179894 |
|
|
|
179894 |
aghik %r0,%r5,-1 /* vll needs highest index. */
|
|
|
179894 |
bc 4,0(%r14) /* cc==1: return if needle-len == 0. */
|
|
|
179894 |
diff --git a/sysdeps/s390/strstr-arch13.S b/sysdeps/s390/strstr-arch13.S
|
|
|
179894 |
index faa969849e09c2e1..ffc34c2523ce635a 100644
|
|
|
179894 |
--- a/sysdeps/s390/strstr-arch13.S
|
|
|
179894 |
+++ b/sysdeps/s390/strstr-arch13.S
|
|
|
179894 |
@@ -49,7 +49,7 @@ ENTRY(STRSTR_ARCH13)
|
|
|
179894 |
# error The arch13 variant of strstr needs the z13 variant of strstr!
|
|
|
179894 |
# endif
|
|
|
179894 |
clgfi %r4,9
|
|
|
179894 |
- jh STRSTR_Z13
|
|
|
179894 |
+ jgh STRSTR_Z13
|
|
|
179894 |
|
|
|
179894 |
/* In case of a partial match, the vstrs instruction returns the index
|
|
|
179894 |
of the partial match in a vector-register. Then we have to
|