2001-10-12 Joel Sherrill <joel@OARcorp.com>

* cpu_asm.S: _CPU_Context_save_fp in was incorrectly in conditional
	compilation block with (CPU_HARDWARE_FP == FALSE).  Reported by
	Wayne Bullaughey <wayne@wmi.com>.
This commit is contained in:
Joel Sherrill
2001-10-12 17:11:40 +00:00
parent cfb99fb7b3
commit f64f18160c
4 changed files with 16 additions and 4 deletions

View File

@@ -1,3 +1,9 @@
2001-10-12 Joel Sherrill <joel@OARcorp.com>
* cpu_asm.S: _CPU_Context_save_fp in was incorrectly in conditional
compilation block with (CPU_HARDWARE_FP == FALSE). Reported by
Wayne Bullaughey <wayne@wmi.com>.
2001-10-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* .cvsignore: Add autom4te.cache for autoconf > 2.52.

View File

@@ -165,7 +165,7 @@
* );
*/
#if ( CPU_HARDWARE_FP == FALSE )
#if ( CPU_HARDWARE_FP == TRUE )
FRAME(_CPU_Context_save_fp,sp,0,ra)
.set noat
ld a1,(a0)
@@ -226,7 +226,7 @@ ENDFRAME(_CPU_Context_save_fp)
* )
*/
#if ( CPU_HARDWARE_FP == FALSE )
#if ( CPU_HARDWARE_FP == TRUE )
FRAME(_CPU_Context_restore_fp,sp,0,ra)
.set noat
ld a1,(a0)