diff options
Diffstat (limited to 'gcc/config/arm')
-rw-r--r-- | gcc/config/arm/lib1funcs.asm | 5 | ||||
-rw-r--r-- | gcc/config/arm/t-symbian | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/config/arm/lib1funcs.asm b/gcc/config/arm/lib1funcs.asm index 8494a97..9245b3c 100644 --- a/gcc/config/arm/lib1funcs.asm +++ b/gcc/config/arm/lib1funcs.asm @@ -1020,6 +1020,9 @@ LSYM(Lover12): #define ah r1 #endif +/* Prevent __aeabi double-word shifts from being produced on SymbianOS. */ +#ifndef __symbian__ + #ifdef L_lshrdi3 FUNC_START lshrdi3 @@ -1121,6 +1124,8 @@ LSYM(Lover12): #endif +#endif /* __symbian__ */ + /* ------------------------------------------------------------------------ */ /* These next two sections are here despite the fact that they contain Thumb assembler because their presence allows interworked code to be linked even diff --git a/gcc/config/arm/t-symbian b/gcc/config/arm/t-symbian index 8f72b3e..db89138 100644 --- a/gcc/config/arm/t-symbian +++ b/gcc/config/arm/t-symbian @@ -14,7 +14,7 @@ LIB1ASMFUNCS += \ # Include the gcc personality routine UNWIND_H = $(srcdir)/config/arm/unwind-arm.h -LIB2ADDEH = $(srcdir)/unwind-c.c +LIB2ADDEH = $(srcdir)/unwind-c.c $(srcdir)/config/arm/pr-support.c LIB2ADDEHDEP = $(UNWIND_H) # Create a multilib for processors with VFP floating-point, and a |