ARM: fix bits-to-fp conversion function declarations.
Add extra declarations to allow the compiler to pick up the right function. Please note that these declarations have been added as part of the clang-related changes.
This commit is contained in:
parent
4b32c9fb4d
commit
d51478db4e
1 changed files with 2 additions and 0 deletions
|
@ -108,7 +108,9 @@ enum VfpRoundingMode
|
||||||
};
|
};
|
||||||
|
|
||||||
static inline float bitsToFp(uint64_t, float);
|
static inline float bitsToFp(uint64_t, float);
|
||||||
|
static inline double bitsToFp(uint64_t, double);
|
||||||
static inline uint32_t fpToBits(float);
|
static inline uint32_t fpToBits(float);
|
||||||
|
static inline uint64_t fpToBits(double);
|
||||||
|
|
||||||
template <class fpType>
|
template <class fpType>
|
||||||
static inline bool
|
static inline bool
|
||||||
|
|
Loading…
Reference in a new issue