X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/59e0d9fe772464b93d835d2a2964457702469a43..70ad1dc8a19d6edd9b97aa81f32cfd65758ae97d:/gdtoa/arith.h?ds=sidebyside diff --git a/gdtoa/arith.h b/gdtoa/arith.h index b20ee85..0f5dd96 100644 --- a/gdtoa/arith.h +++ b/gdtoa/arith.h @@ -3,8 +3,6 @@ * * @APPLE_LICENSE_HEADER_START@ * - * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. - * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in @@ -27,18 +25,33 @@ * and spliced together for the different architectures. */ -#if defined(__ppc__) -#define IEEE_MC68k -#define Arith_Kind_ASL 2 +#if defined(__i386__) +#define IEEE_8087 +#define Arith_Kind_ASL 1 +#elif defined(__x86_64__) +#define IEEE_8087 +#define Arith_Kind_ASL 1 +#define Long int +#define Intcast (int)(long) #define Double_Align -#elif defined(__ppc64__) +#define X64_bit_pointers +#elif defined(__arm__) +#if __VFP_FP__ +#define IEEE_8087 +#else #define IEEE_MC68k -#define Arith_Kind_ASL 2 -#define Double_Align -#define Long int -#elif defined(__i386__) +#endif +#define Arith_Kind_ASL 1 +#elif defined(__arm64__) #define IEEE_8087 #define Arith_Kind_ASL 1 +#define Long int +#define Intcast (int)(long) +#define Double_Align +#define X64_bit_pointers #else #error Unsupported architecture #endif + +#define Honor_FLT_ROUNDS +#define Trust_FLT_ROUNDS