Changeset f64f1816 in rtems
- Timestamp:
- 10/12/01 17:11:40 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- bc5fc7a6
- Parents:
- cfb99fb
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/cpu/mips/ChangeLog
rcfb99fb rf64f1816 1 2001-10-12 Joel Sherrill <joel@OARcorp.com> 2 3 * cpu_asm.S: _CPU_Context_save_fp in was incorrectly in conditional 4 compilation block with (CPU_HARDWARE_FP == FALSE). Reported by 5 Wayne Bullaughey <wayne@wmi.com>. 6 1 7 2001-10-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/exec/score/cpu/mips/cpu_asm.S
rcfb99fb rf64f1816 166 166 */ 167 167 168 #if ( CPU_HARDWARE_FP == FALSE )168 #if ( CPU_HARDWARE_FP == TRUE ) 169 169 FRAME(_CPU_Context_save_fp,sp,0,ra) 170 170 .set noat … … 227 227 */ 228 228 229 #if ( CPU_HARDWARE_FP == FALSE )229 #if ( CPU_HARDWARE_FP == TRUE ) 230 230 FRAME(_CPU_Context_restore_fp,sp,0,ra) 231 231 .set noat -
cpukit/score/cpu/mips/ChangeLog
rcfb99fb rf64f1816 1 2001-10-12 Joel Sherrill <joel@OARcorp.com> 2 3 * cpu_asm.S: _CPU_Context_save_fp in was incorrectly in conditional 4 compilation block with (CPU_HARDWARE_FP == FALSE). Reported by 5 Wayne Bullaughey <wayne@wmi.com>. 6 1 7 2001-10-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/mips/cpu_asm.S
rcfb99fb rf64f1816 166 166 */ 167 167 168 #if ( CPU_HARDWARE_FP == FALSE )168 #if ( CPU_HARDWARE_FP == TRUE ) 169 169 FRAME(_CPU_Context_save_fp,sp,0,ra) 170 170 .set noat … … 227 227 */ 228 228 229 #if ( CPU_HARDWARE_FP == FALSE )229 #if ( CPU_HARDWARE_FP == TRUE ) 230 230 FRAME(_CPU_Context_restore_fp,sp,0,ra) 231 231 .set noat
Note: See TracChangeset
for help on using the changeset viewer.