ARM only has 32-bit integer registers, so using types smaller than 32-bits produces larger/slower code.

This commit is contained in:
Jacob Young
2017-09-17 11:48:20 -04:00
committed by EmilieNumworks
parent 6eb9ca615a
commit 2a2112396e

View File

@@ -14,13 +14,13 @@ typedef signed long long int64_t;
typedef unsigned int uintptr_t;
typedef signed int intptr_t;
typedef uint8_t uint_fast8_t;
typedef uint16_t uint_fast16_t;
typedef uint32_t uint_fast8_t;
typedef uint32_t uint_fast16_t;
typedef uint32_t uint_fast32_t;
typedef uint64_t uint_fast64_t;
typedef int8_t int_fast8_t;
typedef int16_t int_fast16_t;
typedef int32_t int_fast8_t;
typedef int32_t int_fast16_t;
typedef int32_t int_fast32_t;
typedef int64_t int_fast64_t;