Changeset f64f1816 in rtems


Ignore:
Timestamp:
10/12/01 17:11:40 (22 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
bc5fc7a6
Parents:
cfb99fb
Message:

2001-10-12 Joel Sherrill <joel@…>

  • cpu_asm.S: _CPU_Context_save_fp in was incorrectly in conditional compilation block with (CPU_HARDWARE_FP == FALSE). Reported by Wayne Bullaughey <wayne@…>.
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/score/cpu/mips/ChangeLog

    rcfb99fb rf64f1816  
     12001-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
    172001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/exec/score/cpu/mips/cpu_asm.S

    rcfb99fb rf64f1816  
    166166 */
    167167
    168 #if ( CPU_HARDWARE_FP == FALSE )
     168#if ( CPU_HARDWARE_FP == TRUE )
    169169FRAME(_CPU_Context_save_fp,sp,0,ra)
    170170        .set noat
     
    227227 */
    228228
    229 #if ( CPU_HARDWARE_FP == FALSE )
     229#if ( CPU_HARDWARE_FP == TRUE )
    230230FRAME(_CPU_Context_restore_fp,sp,0,ra)
    231231        .set noat
  • cpukit/score/cpu/mips/ChangeLog

    rcfb99fb rf64f1816  
     12001-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
    172001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • cpukit/score/cpu/mips/cpu_asm.S

    rcfb99fb rf64f1816  
    166166 */
    167167
    168 #if ( CPU_HARDWARE_FP == FALSE )
     168#if ( CPU_HARDWARE_FP == TRUE )
    169169FRAME(_CPU_Context_save_fp,sp,0,ra)
    170170        .set noat
     
    227227 */
    228228
    229 #if ( CPU_HARDWARE_FP == FALSE )
     229#if ( CPU_HARDWARE_FP == TRUE )
    230230FRAME(_CPU_Context_restore_fp,sp,0,ra)
    231231        .set noat
Note: See TracChangeset for help on using the changeset viewer.