xref: /dflybsd-src/contrib/gcc-4.7/libgcc/config/i386/64/_powitf2.c (revision 04febcfb30580676d3e95f58a16c5137ee478b32)
1*e4b17023SJohn Marino #ifdef SHARED
2*e4b17023SJohn Marino #define __powitf2 __powitf2_shared
3*e4b17023SJohn Marino #endif
4*e4b17023SJohn Marino 
5*e4b17023SJohn Marino #define L_powitf2
6*e4b17023SJohn Marino #include "libgcc2.c"
7*e4b17023SJohn Marino 
8*e4b17023SJohn Marino #ifdef SHARED
9*e4b17023SJohn Marino #undef __powitf2
10*e4b17023SJohn Marino extern __typeof__ (__powitf2_shared) __powitf2_compat __attribute__((alias ("__powitf2_shared")));
11*e4b17023SJohn Marino 
12*e4b17023SJohn Marino #ifndef _WIN32
13*e4b17023SJohn Marino asm (".symver __powitf2_compat,__powitf2@GCC_4.0.0");
14*e4b17023SJohn Marino asm (".symver __powitf2_shared,__powitf2@@GCC_4.3.0");
15*e4b17023SJohn Marino #endif
16*e4b17023SJohn Marino #endif
17