diff options
Diffstat (limited to '')
-rw-r--r-- | common.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -77,6 +77,7 @@ enum endian { }; +/* Don't forget to update SUPPORTED_ARCHES in Makefile */ #define LIST_ARCH_SPECS(X, D) /* byte intptr size_t endian sign */\ X(LIBSYSCALLS_ARCH_ALPHA_LE, 8, 64, 64, Little, TWOS_COMPLEMENT) D\ X(LIBSYSCALLS_ARCH_ALPHA_BE, 8, 64, 64, Big, TWOS_COMPLEMENT) D\ @@ -123,8 +124,6 @@ enum endian { X(LIBSYSCALLS_ARCH_I386, 8, 32, 32, Little, TWOS_COMPLEMENT) D\ X(LIBSYSCALLS_ARCH_XTENSA_LE, 8, 32, 32, Little, TWOS_COMPLEMENT) D\ X(LIBSYSCALLS_ARCH_XTENSA_BE, 8, 32, 32, Big, TWOS_COMPLEMENT) - /* Don't forget to update SUPPORTED_ARCHES in Makefile */ - /* TODO (alignment) means that it is missing in libsyscalls_get_integer_alignment.c and must also be added thither */ #include "generated/oses.h" |