dd7b73c0a6
2008-07-07 H.J. Lu <hongjiu.lu@intel.com> * config/i386/64/_divtc3-compat.c: Moved to ... * config/i386/64/_divtc3.c: Here. * config/i386/64/_multc3-compat.c: Moved to ... * config/i386/64/_multc3.c: Here. * config/i386/64/_powitf2-compat.c: Moved to ... * config/i386/64/_powitf2.c: Here. * config/i386/64/t-softfp-compat (libgcc2-tf-compats): Add .c suffix instead of -compat.c. From-SVN: r137579
15 lines
344 B
C
15 lines
344 B
C
#ifdef SHARED
|
|
#define __powitf2 __powitf2_shared
|
|
#endif
|
|
|
|
#define L_powitf2
|
|
#include "libgcc2.c"
|
|
|
|
#ifdef SHARED
|
|
#undef __powitf2
|
|
extern __typeof__ (__powitf2_shared) __powitf2_compat __attribute__((alias ("__powitf2_shared")));
|
|
|
|
asm (".symver __powitf2_compat,__powitf2@GCC_4.0.0");
|
|
asm (".symver __powitf2_shared,__powitf2@@GCC_4.3.0");
|
|
#endif
|