From f64f18160cab2dce5296ca38e8329e0fb80ac991 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 12 Oct 2001 17:11:40 +0000 Subject: 2001-10-12 Joel Sherrill * cpu_asm.S: _CPU_Context_save_fp in was incorrectly in conditional compilation block with (CPU_HARDWARE_FP == FALSE). Reported by Wayne Bullaughey . --- cpukit/score/cpu/mips/ChangeLog | 6 ++++++ cpukit/score/cpu/mips/cpu_asm.S | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) (limited to 'cpukit/score/cpu') diff --git a/cpukit/score/cpu/mips/ChangeLog b/cpukit/score/cpu/mips/ChangeLog index 5b3439971a..35ece7d8e0 100644 --- a/cpukit/score/cpu/mips/ChangeLog +++ b/cpukit/score/cpu/mips/ChangeLog @@ -1,3 +1,9 @@ +2001-10-12 Joel Sherrill + + * cpu_asm.S: _CPU_Context_save_fp in was incorrectly in conditional + compilation block with (CPU_HARDWARE_FP == FALSE). Reported by + Wayne Bullaughey . + 2001-10-11 Ralf Corsepius * .cvsignore: Add autom4te.cache for autoconf > 2.52. diff --git a/cpukit/score/cpu/mips/cpu_asm.S b/cpukit/score/cpu/mips/cpu_asm.S index dfd364d249..a259bd9006 100644 --- a/cpukit/score/cpu/mips/cpu_asm.S +++ b/cpukit/score/cpu/mips/cpu_asm.S @@ -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) -- cgit v1.2.3