summaryrefslogtreecommitdiff
path: root/libgcc/config/i386/64/_multc3.c
blob: d1ae5e1782a9e9a28848f664be0c3337b710c2ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifdef SHARED
#ifndef __PE__
#define __multc3 __multc3_shared
#endif
#endif

#define L_multc3
#include "libgcc2.c"

#ifdef SHARED
#ifndef __PE__
#undef __multc3
extern __typeof__ (__multc3_shared) __multc3_compat __attribute__((alias ("__multc3_shared")));
#endif

#if !defined(_WIN32) && !defined(__PE__)
asm (".symver __multc3_compat,__multc3@GCC_4.0.0");
asm (".symver __multc3_shared,__multc3@@GCC_4.3.0");
#endif
#endif