Changeset a82695c in mainline for softfloat/arch


Ignore:
Timestamp:
2006-02-22T11:29:49Z (20 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1d83419
Parents:
2cb202e
Message:

Completed conversions from float/double to integer types.

Location:
softfloat/arch/ia32/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • softfloat/arch/ia32/include/functions.h

    r2cb202e ra82695c  
    4242#define float32_to_ulonglong(X) float32_to_uint64(X);
    4343
     44#define float64_to_uint(X) float64_to_uint32(X);
     45#define float64_to_ulong(X) float64_to_uint32(X);
     46#define float64_to_ulonglong(X) float64_to_uint64(X);
     47
    4448#endif
  • softfloat/arch/ia32/include/types.h

    r2cb202e ra82695c  
    4949#define MIN_INT64 (0x8000000000000000ll)
    5050
    51 #define MAX_UINT64 (0xFFFFFFFFFFFFFFFll)
     51#define MAX_UINT64 (0xFFFFFFFFFFFFFFFFll)
    5252#define MIN_UINT64 (0ll)
    5353
Note: See TracChangeset for help on using the changeset viewer.