Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

s390/amode31: Use exrl instead of ex

exrl is present in all machines currently supported, therefore prefer
it over ex. This saves one instruction and doesn't need an additional
register to hold the address of the target instruction.

Signed-off-by: Sven Schnelle <svens@linux.ibm.com>
Reviewed-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>

authored by

Sven Schnelle and committed by
Alexander Gordeev
90c5515d a88c26bb

+1 -2
+1 -2
arch/s390/kernel/text_amode31.S
··· 18 18 * affects a few functions that are not performance-relevant. 19 19 */ 20 20 .macro BR_EX_AMODE31_r14 21 - larl %r1,0f 22 - ex 0,0(%r1) 21 + exrl 0,0f 23 22 j . 24 23 0: br %r14 25 24 .endm