Changeset 69c1995 in mainline for kernel/arch/arm32/include/fpu_context.h
- Timestamp:
- 2012-11-29T12:53:45Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e80d8f8
- Parents:
- 3194d83 (diff), ce60be1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/include/fpu_context.h
r3194d83 r69c1995 41 41 #include <typedefs.h> 42 42 43 #define FPU_CONTEXT_ALIGN 043 #define FPU_CONTEXT_ALIGN 8 44 44 45 /* ARM Architecture reference manual, p B-1529. 46 */ 45 47 typedef struct { 48 uint32_t fpexc; 49 uint32_t fpscr; 50 uint32_t s[64]; 46 51 } fpu_context_t; 52 53 void fpu_setup(void); 54 55 bool handle_if_fpu_exception(void); 47 56 48 57 #endif
Note:
See TracChangeset
for help on using the changeset viewer.