Changeset add04f7 in mainline for kernel/arch/ia32/src/interrupt.c
- Timestamp:
- 2009-03-03T15:20:49Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f24d300
- Parents:
- deca67b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/interrupt.c
rdeca67b radd04f7 139 139 uint32_t mxcsr; 140 140 asm ( 141 "stmxcsr % 0;\n"142 : "=m" (mxcsr)141 "stmxcsr %[mxcsr]\n" 142 : [mxcsr] "=m" (mxcsr) 143 143 ); 144 144 fault_if_from_uspace(istate, "SIMD FP exception(19), MXCSR: %#zx.", 145 145 (unative_t) mxcsr); 146 146 147 147 decode_istate(istate); 148 148 printf("MXCSR: %#lx\n", mxcsr);
Note:
See TracChangeset
for help on using the changeset viewer.