tests: kernel: fpu_sharing Fixed missing struct defs for ARM
Added empty fp register structs for ARM combinations not handled, i.e. any ARM without a fpu. Signed-off-by: Lars-Ove Karlsson <lars-ove.karlsson@iar.com>
This commit is contained in:
parent
0439cbc29c
commit
e7c74e8f30
1 changed files with 10 additions and 0 deletions
|
@ -96,6 +96,16 @@ struct fp_non_volatile_register_set {
|
|||
float s[16];
|
||||
};
|
||||
|
||||
#else
|
||||
|
||||
struct fp_volatile_register_set {
|
||||
/* No volatile floating point registers */
|
||||
};
|
||||
|
||||
struct fp_non_volatile_register_set {
|
||||
/* No non-volatile floating point registers */
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
#define SIZEOF_FP_VOLATILE_REGISTER_SET \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue