mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
ARM only has 32-bit integer registers, so using types smaller than 32-bits produces larger/slower code.
This commit is contained in:
committed by
EmilieNumworks
parent
6eb9ca615a
commit
2a2112396e
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user