Changeset 432a269 in mainline for uspace/lib/softfloat/arch/ia64/include/functions.h
- Timestamp:
- 2011-09-16T21:13:57Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3a11f17
- Parents:
- c0e53ff (diff), fd07e526 (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/ia64/include/functions.h
rc0e53ff r432a269 1 1 /* 2 2 * Copyright (c) 2006 Josef Cejka 3 * Copyright (c) 2011 Petr Koupy 3 4 * All rights reserved. 4 5 * … … 46 47 #define float64_to_longlong(X) float64_to_int64(X); 47 48 49 #define float128_to_int(X) float128_to_int32(X); 50 #define float128_to_long(X) float128_to_int64(X); 51 #define float128_to_longlong(X) float128_to_int64(X); 52 48 53 #define float32_to_uint(X) float32_to_uint32(X); 49 54 #define float32_to_ulong(X) float32_to_uint64(X); … … 53 58 #define float64_to_ulong(X) float64_to_uint64(X); 54 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_uint64(X); 63 #define float128_to_ulonglong(X) float128_to_uint64(X); 55 64 56 65 #define int_to_float32(X) int32_to_float32(X); … … 62 71 #define longlong_to_float64(X) int64_to_float64(X); 63 72 73 #define int_to_float128(X) int32_to_float128(X); 74 #define long_to_float128(X) int64_to_float128(X); 75 #define longlong_to_float128(X) int64_to_float128(X); 76 64 77 #define uint_to_float32(X) uint32_to_float32(X); 65 78 #define ulong_to_float32(X) uint64_to_float32(X); … … 70 83 #define ulonglong_to_float64(X) uint64_to_float64(X); 71 84 85 #define uint_to_float128(X) uint32_to_float128(X); 86 #define ulong_to_float128(X) uint64_to_float128(X); 87 #define ulonglong_to_float128(X) uint64_to_float128(X); 88 72 89 #endif 73 74 90 75 91 /** @} 76 92 */ 77
Note:
See TracChangeset
for help on using the changeset viewer.