2019-05-24 16:52:13 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019, Linaro Limited
|
2020-12-22 11:46:19 +01:00
|
|
|
* Copyright (c) 2021, Arm Limited. All rights reserved.<BR>
|
2019-05-24 16:52:13 +02:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
*/
|
|
|
|
|
2020-12-22 11:46:19 +01:00
|
|
|
#ifndef ARM_SOFT_FLOAT_LIB_H_
|
|
|
|
#define ARM_SOFT_FLOAT_LIB_H_
|
|
|
|
|
2019-05-24 16:52:13 +02:00
|
|
|
#define LITTLEENDIAN 1
|
2019-05-31 22:46:30 +02:00
|
|
|
#define INLINE static inline
|
2019-05-24 16:52:13 +02:00
|
|
|
#define SOFTFLOAT_BUILTIN_CLZ 1
|
|
|
|
#define SOFTFLOAT_FAST_INT64
|
|
|
|
#include "opts-GCC.h"
|
2020-12-22 11:46:19 +01:00
|
|
|
|
|
|
|
#endif // ARM_SOFT_FLOAT_LIB_H_
|