* gcc-interface/decl.c (gnat_to_gnu_field): Do not set the alignment
[official-gcc.git] / libgcc / config / avr / t-avrlibc
blobd2c8b870aab91035f16047e4ad21f13c4c6ce53d
1 # This file is used if not configured --with-avrlibc=no
3 # AVR-Libc comes with hand-optimized float routines.
4 # For historical reasons, these routines live in AVR-Libc
5 # and not in libgcc and use the same function names like libgcc.
6 # To get the best support, i.e. always use the routines from
7 # AVR-Libc, we remove these routines from libgcc.
9 # See also PR54461.
12 # Arithmetic:
13 #     __addsf3 __subsf3 __divsf3 __mulsf3 __negsf2
15 # Comparison:
16 #     __cmpsf2 __unordsf2
17 #     __eqsf2 __lesf2 __ltsf2 __nesf2 __gesf2 __gtsf2
19 # Conversion:
20 #     __fixsfdi __fixunssfdi __floatdisf __floatundisf
21 #     __fixsfsi __fixunssfsi __floatsisf __floatunsisf
24 # These functions are contained in modules:
26 # _addsub_sf.o:   __addsf3  __subsf3
27 # _mul_sf.o:      __mulsf3
28 # _div_sf.o:      __divsf3
29 # _negate_sf.o:   __negsf2
31 # _compare_sf.o:  __cmpsf2
32 # _unord_sf.o:    __unordsf2
33 # _eq_sf.o:       __eqsf2
34 # _ne_sf.o:       __nesf2
35 # _ge_sf.o:       __gesf2
36 # _gt_sf.o:       __gtsf2
37 # _le_sf.o:       __lesf2
38 # _lt_sf.o:       __ltsf2
40 # _fixsfdi.o:     __fixsfdi
41 # _fixunssfdi.o:  __fixunssfdi
42 # _fixunssfsi.o:  __fixunssfsi
43 # _floatdisf.o:   __floatdisf
44 # _floatundisf.o: __floatundisf
45 # _sf_to_si.o:    __fixsfsi
46 # _si_to_sf.o:    __floatsisf
47 # _usi_to_sf.o:   __floatunsisf
50 # SFmode
51 LIB2FUNCS_EXCLUDE += \
52         _addsub_sf \
53         _negate_sf \
54         _mul_sf _div_sf \
55         \
56         _compare_sf \
57         _unord_sf \
58         _eq_sf _ne_sf \
59         _gt_sf _ge_sf \
60         _lt_sf _le_sf \
61         \
62         _si_to_sf  _sf_to_si \
63         _usi_to_sf _sf_to_usi \
64         _fixunssfsi _fixsfdi \
65         _fixunssfdi \
66         _floatdisf _floatundisf