- Timestamp:
- 2005-09-04T08:28:55Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8ff2f3f
- Parents:
- 005384ad
- Location:
- arch/ia32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/include/fpu_context.h
r005384ad r3396f59 33 33 34 34 struct fpu_context { 35 __u8 fpu[512]; /* FXSAVE & FXRSTOR storage area */ 35 /* TODO: We need malloc that aligns structures on 16-byte boundary */ 36 __u8 fpu[512+16]; /* FXSAVE & FXRSTOR storage area */ 36 37 }; 37 38 -
arch/ia32/src/fpu_context.c
r005384ad r3396f59 55 55 : "=m"(*fctx) 56 56 ); 57 return;58 57 } 59 58 … … 64 63 : "=m"(*fctx) 65 64 ); 66 return;67 65 } 68 66
Note:
See TracChangeset
for help on using the changeset viewer.