Changeset f37d769 in mainline for softfloat/generic/softfloat.c
- Timestamp:
- 2006-02-24T18:24:07Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fbd6f81
- Parents:
- ba5870d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
softfloat/generic/softfloat.c
rba5870d rf37d769 264 264 double __floatsidf(int i) 265 265 { 266 float64 da; 267 268 da = int_to_float64(i); 269 return da.d; 266 270 } 267 271 … … 275 279 double __floatdidf(long i) 276 280 { 281 float64 da; 282 283 da = long_to_float64(i); 284 return da.d; 277 285 } 278 286 … … 286 294 double __floattidf(long long i) 287 295 { 296 float64 da; 297 298 da = longlong_to_float64(i); 299 return da.d; 288 300 } 289 301 … … 297 309 double __floatunsidf(unsigned int i) 298 310 { 311 float64 da; 312 313 da = uint_to_float64(i); 314 return da.d; 299 315 } 300 316 … … 308 324 double __floatundidf(unsigned long i) 309 325 { 326 float64 da; 327 328 da = ulong_to_float64(i); 329 return da.d; 310 330 } 311 331 … … 319 339 double __floatuntidf(unsigned long long i) 320 340 { 341 float64 da; 342 343 da = ulonglong_to_float64(i); 344 return da.d; 321 345 } 322 346
Note:
See TracChangeset
for help on using the changeset viewer.