Changeset d3e241a in mainline for uspace/lib/softfloat/arch/arm32/include/functions.h
- Timestamp:
- 2011-08-06T07:16:50Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b705ecc, cc677f1
- Parents:
- b7ee0369 (diff), c67aff2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softfloat/arch/arm32/include/functions.h
rb7ee0369 rd3e241a 1 1 /* 2 2 * Copyright (c) 2006 Josef Cejka 3 * Copyright (c) 2011 Petr Koupy 3 4 * All rights reserved. 4 5 * … … 33 34 */ 34 35 /** @file 35 * @brief Softfloat architecture dependent definitions.36 36 */ 37 37 … … 47 47 #define float64_to_longlong(X) float64_to_int64(X); 48 48 49 #define float128_to_int(X) float128_to_int32(X); 50 #define float128_to_long(X) float128_to_int32(X); 51 #define float128_to_longlong(X) float128_to_int64(X); 52 49 53 #define float32_to_uint(X) float32_to_uint32(X); 50 54 #define float32_to_ulong(X) float32_to_uint32(X); … … 54 58 #define float64_to_ulong(X) float64_to_uint32(X); 55 59 #define float64_to_ulonglong(X) float64_to_uint64(X); 60 61 #define float128_to_uint(X) float128_to_uint32(X); 62 #define float128_to_ulong(X) float128_to_uint32(X); 63 #define float128_to_ulonglong(X) float128_to_uint64(X); 56 64 57 65 #define int_to_float32(X) int32_to_float32(X); … … 63 71 #define longlong_to_float64(X) int64_to_float64(X); 64 72 73 #define int_to_float128(X) int32_to_float128(X); 74 #define long_to_float128(X) int32_to_float128(X); 75 #define longlong_to_float128(X) int64_to_float128(X); 76 65 77 #define uint_to_float32(X) uint32_to_float32(X); 66 78 #define ulong_to_float32(X) uint32_to_float32(X); … … 71 83 #define ulonglong_to_float64(X) uint64_to_float64(X); 72 84 85 #define uint_to_float128(X) uint32_to_float128(X); 86 #define ulong_to_float128(X) uint32_to_float128(X); 87 #define ulonglong_to_float128(X) uint64_to_float128(X); 88 73 89 #endif 74 90
Note:
See TracChangeset
for help on using the changeset viewer.