mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
powerpc: Fix TABORT encoding for little endian
This patch fix the TABORT encoding for toolchains with no support for HTM builtins.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2015-02-12 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/powerpc/htm.h [TABORT]: Fix encoding for
|
||||||
|
little endian.
|
||||||
|
|
||||||
2015-02-12 Andreas Schwab <schwab@suse.de>
|
2015-02-12 Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
[BZ #15790]
|
[BZ #15790]
|
||||||
|
@ -60,7 +60,7 @@
|
|||||||
#define TBEGIN ".long 0x7c00051d"
|
#define TBEGIN ".long 0x7c00051d"
|
||||||
#define TEND ".long 0x7c00055d"
|
#define TEND ".long 0x7c00055d"
|
||||||
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
||||||
# define TABORT ".byte 0x1d,0x07,%1,0x1d"
|
# define TABORT ".byte 0x1d,0x07,%1,0x7c"
|
||||||
#else
|
#else
|
||||||
# define TABORT ".byte 0x7c,%1,0x07,0x1d"
|
# define TABORT ".byte 0x7c,%1,0x07,0x1d"
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user