From 1d02eb0587c9434eb32979377f1c92e54fa96f4d Mon Sep 17 00:00:00 2001 From: Subv Date: Sun, 29 Nov 2015 13:06:45 -0500 Subject: Core/ARM11: Correct the size of the VFP register array in the ThreadContext structure. The VFP registers are 64 bits each, and there are 32 of them. --- src/core/core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/core.h') diff --git a/src/core/core.h b/src/core/core.h index 278f0f1cc..491230a74 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -18,7 +18,7 @@ struct ThreadContext { u32 lr; u32 pc; u32 cpsr; - u32 fpu_registers[32]; + u32 fpu_registers[64]; u32 fpscr; u32 fpexc; }; -- cgit v1.2.3