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:
Lars-Ove Karlsson 2024-11-05 08:54:07 +01:00 committed by Anas Nashif
commit e7c74e8f30

View file

@ -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 \