On 3 December 2015 at 19:00, Andrew Jones <drjo...@redhat.com> wrote: > On Thu, Dec 03, 2015 at 12:27:34PM +0000, Peter Maydell wrote: >> Do consumers care if we write out a dump with FP register >> state for a CPU which doesn't implement FP? (For AArch64 >> FP is always present, but for AArch32 it may not be.) > > I don't know, but it should be easy to avoid writing them when FP > isn't present, based on some status, so I'll look into doing that.
if (arm_feature(env, ARM_FEATURE_VFP)) is probably what you want. thanks -- PMM