Changeset 0e24857 in mainline for arch/mips32/src/fpu_context.c
- Timestamp:
- 2006-03-12T08:40:19Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b22e1db
- Parents:
- 9faddb3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/src/fpu_context.c
r9faddb3 r0e24857 35 35 void fpu_disable(void) 36 36 { 37 #ifdef HAVE_FPU37 #ifdef ARCH_HAS_FPU 38 38 cp0_status_write(cp0_status_read() & ~cp0_status_fpu_bit); 39 39 if (THREAD && THREAD->pstate) … … 44 44 void fpu_enable(void) 45 45 { 46 #ifdef HAVE_FPU46 #ifdef ARCH_HAS_FPU 47 47 cp0_status_write(cp0_status_read() | cp0_status_fpu_bit); 48 48 if (THREAD && THREAD->pstate)
Note:
See TracChangeset
for help on using the changeset viewer.