2009-06-18 Chris Johns <chrisj@rtems.org>

* libmisc/shell/hexdump-odsyntax.c: H8300 has the same size float
        and double. Fix error in case statement.
This commit is contained in:
Chris Johns
2009-06-17 21:57:51 +00:00
parent bf7cc57b0a
commit 6b2c314f20
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2009-06-18 Chris Johns <chrisj@rtems.org>
* libmisc/shell/hexdump-odsyntax.c: H8300 has the same size float
and double. Fix error in case statement.
2009-06-18 Chris Johns <chrisj@rtems.org>
* score/cpu/mips/rtems/mips/idtcpu.h: Missed another WAIT

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__)
#if !defined(__AVR__) && !defined(__H8300__)
case sizeof(double):
digits = DBL_DIG;
break;