| 27 | // Machine types |
| 28 | |
| 29 | inline void assertions(void) { |
| 30 | static_assert(sizeof(float) == sizeof(uint32_t), "incompatible float type"); |
| 31 | static_assert(sizeof(double) == sizeof(uint64_t), "incompatible double type"); |
| 32 | static_assert(sizeof(intptr_t) == sizeof(uint32_t) || |
| 33 | sizeof(intptr_t) == sizeof(uint64_t), |
| 34 | "incompatible pointer type"); |
| 35 | } |
| 36 | |
| 37 | typedef char byte_t; |
| 38 | typedef float float32_t; |
nothing calls this directly
no outgoing calls
no test coverage detected