diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 13:44:35 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 13:44:35 +0200 |
commit | 0eaaf662b70806181b7fe2a1b165769f4e48d0f0 (patch) | |
tree | 5717d09ffd7527e1743e55e6ffecc669c018e5a8 /ldso | |
parent | dc631e1281177736ee7b39f2d67ca84f8db0e483 (diff) |
ldso: use .arm mode for resolver unconditionally
as per comment in the file.
Fixes runtime with __THUMB_INTERWORK__ enabled.
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/ldso/arm/resolve.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/ldso/arm/resolve.S b/ldso/ldso/arm/resolve.S index 08889d06e..b0907f774 100644 --- a/ldso/ldso/arm/resolve.S +++ b/ldso/ldso/arm/resolve.S @@ -101,7 +101,7 @@ .text .align 4 @ 16 byte boundary and there are 32 bytes below (arm case) - #if !defined(__thumb__) || defined(__thumb2__) +#if 1 /*(!defined(__thumb__) || defined __THUMB_INTERWORK__) || defined(__thumb2__)*/ .arm .globl _dl_linux_resolve .type _dl_linux_resolve,%function |