Mercurial > ecos
changeset 1487:c8043dc582b8
* include/hal_var_bank.inc: Fix build error on non-FPU systems due to
CYG_FPSCR.
| author | nickg |
|---|---|
| date | Thu, 05 Feb 2004 16:02:27 +0000 |
| parents | 8fd0d2092033 |
| children | d3c32a6f5eb5 |
| files | packages/hal/sh/arch/current/ChangeLog packages/hal/sh/arch/current/include/hal_var_bank.inc |
| diffstat | 2 files changed, 7 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/hal/sh/arch/current/ChangeLog +++ b/packages/hal/sh/arch/current/ChangeLog @@ -1,3 +1,8 @@ +2004-02-05 Kelvin Lawson <klawson@ad-holdings.co.uk> + + * include/hal_var_bank.inc: Fix build error on non-FPU systems due to + CYG_FPSCR. + 2003-12-05 Andrew Lunn <andrew.lunn@ascom.ch> * include/hal_intr_excevt.h:
--- a/packages/hal/sh/arch/current/include/hal_var_bank.inc +++ b/packages/hal/sh/arch/current/include/hal_var_bank.inc @@ -279,7 +279,9 @@ 2: nop .align 2 1: .long CYG_SR +#ifdef CYGHWR_HAL_SH_FPU 3: .long CYG_FPSCR +#endif # ------------------------------------------------------------ # Register bank has changed now. 2:
