tools/llvm: Do not build with symbols
[minix3.git] / lib / libc / arch / m68k / gen / flt_rounds_softfloat.S
blobe20e679a14a4194933b2fd1a2e2180ee25ca4da1
1 /*      $NetBSD: flt_rounds_softfloat.S,v 1.5 2013/07/18 21:36:08 matt Exp $    */
3 /*
4  * Written by J.T. Conklin, Apr 6, 1995
5  * Public domain.
7  * Broken by Bruce O'Neel Aug 4 2003
8         gcc no longer seems to export fpCCR so this fails.
9         for now just return 0.
10  */
12 #include <machine/asm.h>
14         .text
15 #if 0
16         /* NB: this is tied to the gcc-2.95 lb1sf68.asm: */
17 _map:
18         .byte 1         /* round to nearest */
19         .byte 0         /* round to zero */
20         .byte 2         /* round to positive infinity */
21         .byte 3         /* round to negative infinity */
22 #endif
24 ENTRY(__flt_rounds)
25         /* lea  _C_LABEL(_fpCCR),%a0    | check the rounding mode */
26         /* movew        6(%a0),%d0      | rounding mode in d0 */
27         /* lea  _map,%a0 */
28         moveb   #0,%d0
29         rts
30 END(__flt_rounds)