forked from Imagelibrary/rtems
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:
@@ -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>
|
2009-06-18 Chris Johns <chrisj@rtems.org>
|
||||||
|
|
||||||
* score/cpu/mips/rtems/mips/idtcpu.h: Missed another WAIT
|
* score/cpu/mips/rtems/mips/idtcpu.h: Missed another WAIT
|
||||||
|
|||||||
@@ -353,7 +353,7 @@ odformatfp(rtems_shell_hexdump_globals* globals, char fchar __unused, const char
|
|||||||
case sizeof(float):
|
case sizeof(float):
|
||||||
digits = FLT_DIG;
|
digits = FLT_DIG;
|
||||||
break;
|
break;
|
||||||
#if !defined(__AVR__)
|
#if !defined(__AVR__) && !defined(__H8300__)
|
||||||
case sizeof(double):
|
case sizeof(double):
|
||||||
digits = DBL_DIG;
|
digits = DBL_DIG;
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user