Changeset 999de9b in rtems
- Timestamp:
- Nov 19, 2009, 2:39:39 PM (11 years ago)
- Branches:
- 4.10, 4.11, 5, master
- Children:
- b5b51fc
- Parents:
- 88db141
- Location:
- cpukit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r88db141 r999de9b 1 2009-11-19 Ralf Corsépius <ralf.corsepius@rtems.org> 2 3 * libmisc/shell/hexdump-odsyntax.c: Remove special casing 4 the h8300, avr, sh2e. 5 1 6 2009-11-19 Ralf Corsépius <ralf.corsepius@rtems.org> 2 7 -
cpukit/libmisc/shell/hexdump-odsyntax.c
r88db141 r999de9b 350 350 } 351 351 } 352 switch (isize) { 353 case sizeof(float): 352 if (isize == sizeof(float) ) { 354 353 digits = FLT_DIG; 355 break; 356 #if !defined(__AVR__) && !defined(__h8300__) && !defined(__SH2E__) 357 case sizeof(double): 354 } else if (isize == sizeof(double)) { 358 355 digits = DBL_DIG; 359 break; 360 #endif 361 default: 362 if (isize == sizeof(long double)) 363 digits = LDBL_DIG; 364 else 365 errx(exit_jump, 1, "unsupported floating point size %lu", 366 (u_long)isize); 356 } else if (isize == sizeof(long double)) { 357 digits = LDBL_DIG; 358 } else { 359 errx(exit_jump, 1, "unsupported floating point size %zu", 360 isize); 367 361 } 368 362
Note: See TracChangeset
for help on using the changeset viewer.