aboutsummaryrefslogtreecommitdiff
path: root/softfloat/softfloat_types.h
blob: f9e9d9ac62e8765e9d8038d8416bc78349a154b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// See LICENSE.SoftFloat for license details.


#ifndef softfloat_types_h
#define softfloat_types_h

/*** COMMENTS. ***/

#include <stdbool.h>
#include <stdint.h>

typedef uint32_t float32_t;
typedef uint64_t float64_t;
typedef struct { uint64_t v; uint16_t x; } floatx80_t;
typedef struct { uint64_t v[ 2 ]; } float128_t;

#define INLINE inline
#define INLINE_LEVEL 1

#endif