Deleted Added
full compact
math_private.h (251292) math_private.h (255361)
1/*
2 * ====================================================
3 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
4 *
5 * Developed at SunPro, a Sun Microsystems, Inc. business.
6 * Permission to use, copy, modify, and distribute this
7 * software is freely granted, provided that this notice
8 * is preserved.
9 * ====================================================
10 */
11
12/*
13 * from: @(#)fdlibm.h 5.1 93/09/24
1/*
2 * ====================================================
3 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
4 *
5 * Developed at SunPro, a Sun Microsystems, Inc. business.
6 * Permission to use, copy, modify, and distribute this
7 * software is freely granted, provided that this notice
8 * is preserved.
9 * ====================================================
10 */
11
12/*
13 * from: @(#)fdlibm.h 5.1 93/09/24
14 * $FreeBSD: head/lib/msun/src/math_private.h 251292 2013-06-03 09:14:31Z das $
14 * $FreeBSD: head/lib/msun/src/math_private.h 255361 2013-09-07 14:04:10Z andrew $
15 */
16
17#ifndef _MATH_PRIVATE_H_
18#define _MATH_PRIVATE_H_
19
20#include <sys/types.h>
21#include <machine/endian.h>
22

--- 11 unchanged lines hidden (view full) ---

34 */
35
36/*
37 * A union which permits us to convert between a double and two 32 bit
38 * ints.
39 */
40
41#ifdef __arm__
15 */
16
17#ifndef _MATH_PRIVATE_H_
18#define _MATH_PRIVATE_H_
19
20#include <sys/types.h>
21#include <machine/endian.h>
22

--- 11 unchanged lines hidden (view full) ---

34 */
35
36/*
37 * A union which permits us to convert between a double and two 32 bit
38 * ints.
39 */
40
41#ifdef __arm__
42#if defined(__VFP_FP__)
42#if defined(__VFP_FP__) || defined(__ARM_EABI__)
43#define IEEE_WORD_ORDER BYTE_ORDER
44#else
45#define IEEE_WORD_ORDER BIG_ENDIAN
46#endif
47#else /* __arm__ */
48#define IEEE_WORD_ORDER BYTE_ORDER
49#endif
50

--- 714 unchanged lines hidden ---
43#define IEEE_WORD_ORDER BYTE_ORDER
44#else
45#define IEEE_WORD_ORDER BIG_ENDIAN
46#endif
47#else /* __arm__ */
48#define IEEE_WORD_ORDER BYTE_ORDER
49#endif
50

--- 714 unchanged lines hidden ---