diff options
-rw-r--r-- | itypes.c | 15 | ||||
-rw-r--r-- | itypes.h | 3 | ||||
-rw-r--r-- | lib.c | 1 | ||||
-rw-r--r-- | parser.c | 4 |
4 files changed, 2 insertions, 21 deletions
@@ -35,8 +35,6 @@ #include "arith.h" #include "itypes.h" -int itypes_little_endian; - #if HAVE_I8 i8_t c_i8(val n, val self) { @@ -263,16 +261,3 @@ unsigned long c_ulong(val n, val self) #error portme #endif } - -extern int itypes_little_endian; -void itypes_init(void); - -void itypes_init() -{ - union u { - volatile unsigned ui; - volatile unsigned char uc[sizeof (unsigned)]; - } u = { 0xff }; - - itypes_little_endian = (u.uc[0] == 0xff); -} @@ -116,6 +116,3 @@ unsigned int c_uint(val, val self); long c_long(val, val self); unsigned long c_ulong(val, val self); - -extern int itypes_little_endian; -void itypes_init(void); @@ -13086,7 +13086,6 @@ void init(val *stack_bottom) hash_init(); struct_init(); tree_init(); - itypes_init(); buf_init(); ffi_init(); sysif_init(); @@ -753,8 +753,8 @@ static val read_file_common(val self, val stream, val error_stream, val compiled val datavec = pop(&item); val funvec = car(item); val desc = vm_make_desc(nlevels, nregs, bytecode, datavec, funvec); - if ((big_endian && itypes_little_endian) || - (!big_endian && !itypes_little_endian)) + if ((big_endian && HAVE_LITTLE_ENDIAN) || + (!big_endian && !HAVE_LITTLE_ENDIAN)) buf_swap32(bytecode); (void) vm_execute_toplevel(desc); gc_hint(desc); |