2009-09-24 Joel Sherrill <joel.sherrill@oarcorp.com>

* libmisc/shell/hexdump-odsyntax.c: Fix failure on SH2e where there is
	only single precision float.
This commit is contained in:
Joel Sherrill
2009-09-24 18:29:06 +00:00
parent b1ca98b9c1
commit d7378b2e84
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2009-09-24 Joel Sherrill <joel.sherrill@oarcorp.com>
* libmisc/shell/hexdump-odsyntax.c: Fix failure on SH2e where there is
only single precision float.
2009-09-24 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/src/getpagesize.c, posix/Makefile.am: Eliminate one copy

View File

@@ -353,7 +353,7 @@ odformatfp(rtems_shell_hexdump_globals* globals, char fchar __unused, const char
case sizeof(float):
digits = FLT_DIG;
break;
#if !defined(__AVR__) && !defined(__h8300__)
#if !defined(__AVR__) && !defined(__h8300__) && !defined(__SH2E__)
case sizeof(double):
digits = DBL_DIG;
break;