X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/59e0d9fe772464b93d835d2a2964457702469a43..2650fa9ee9806a25904566dea091b1225d74f063:/gdtoa/arith.h?ds=inline diff --git a/gdtoa/arith.h b/gdtoa/arith.h index b20ee85..f60614a 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,26 @@ * and spliced together for the different architectures. */ -#if defined(__ppc__) -#define IEEE_MC68k -#define Arith_Kind_ASL 2 -#define Double_Align -#elif defined(__ppc64__) -#define IEEE_MC68k -#define Arith_Kind_ASL 2 -#define Double_Align +#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 -#elif defined(__i386__) +#define Intcast (int)(long) +#define Double_Align +#define X64_bit_pointers +#elif defined(__arm__) +#if __VFP_FP__ #define IEEE_8087 +#else +#define IEEE_MC68k +#endif #define Arith_Kind_ASL 1 #else #error Unsupported architecture #endif + +#define Honor_FLT_ROUNDS +#define Trust_FLT_ROUNDS