Changeset ffc277e in mainline for arch/amd64/src/fpu_context.c
- Timestamp:
- 2005-09-10T00:52:13Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f3a6c8e5
- Parents:
- b02e5d1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/src/fpu_context.c
rb02e5d1 rffc277e 46 46 void fpu_context_restore(fpu_context_t *fctx) 47 47 { 48 /* TODO: We need malloc that allocates on 16-byte boundary !!*/48 /* Align on 16-byte boundary */ 49 49 if (((__u64)fctx) & 0xf) 50 50 fctx = (fpu_context_t *)((((__u64)fctx) | 0xf) + 1); … … 57 57 void fpu_init(void) 58 58 { 59 /* TODO: Zero all SSE, MMX etc. registers */ 59 60 __asm__ volatile ( 60 61 "fninit;"
Note:
See TracChangeset
for help on using the changeset viewer.