Changeset 19131e97 in rtems
- Timestamp:
- 05/14/02 17:45:37 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 830e5f7
- Parents:
- 48f89683
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/cpu/powerpc/rtems/new-exceptions/cpu.h
r48f89683 r19131e97 229 229 * Thus in a system with only one FP task, the FP context will never 230 230 * be saved or restored. 231 * 232 * Note, however that compilers may use floating point registers/ 233 * instructions for optimization or they may save/restore FP registers 234 * on the stack. You must not use deferred switching in these cases 235 * and on the PowerPC attempting to do so will raise a "FP unavailable" 236 * exception. 231 237 */ 232 238 /* … … 234 240 */ 235 241 236 #define CPU_USE_DEFERRED_FP_SWITCH TRUE 242 /* conservative setting (FALSE); probably doesn't affect performance too much */ 243 #define CPU_USE_DEFERRED_FP_SWITCH FALSE 237 244 238 245 /* -
cpukit/score/cpu/powerpc/rtems/new-exceptions/cpu.h
r48f89683 r19131e97 229 229 * Thus in a system with only one FP task, the FP context will never 230 230 * be saved or restored. 231 * 232 * Note, however that compilers may use floating point registers/ 233 * instructions for optimization or they may save/restore FP registers 234 * on the stack. You must not use deferred switching in these cases 235 * and on the PowerPC attempting to do so will raise a "FP unavailable" 236 * exception. 231 237 */ 232 238 /* … … 234 240 */ 235 241 236 #define CPU_USE_DEFERRED_FP_SWITCH TRUE 242 /* conservative setting (FALSE); probably doesn't affect performance too much */ 243 #define CPU_USE_DEFERRED_FP_SWITCH FALSE 237 244 238 245 /*
Note: See TracChangeset
for help on using the changeset viewer.