diff options
author | bunnei <ericbunnie@gmail.com> | 2014-05-16 21:18:01 -0400 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-05-16 21:18:01 -0400 |
commit | 1dc08765a818bf1e24d6611a673791bab752cd45 (patch) | |
tree | 729a4ec371c48cb3712f06376eb3809f835d0dcc /src | |
parent | 509f63486ac51ee692521940a535469c76cbf643 (diff) |
another VFP fix for GCC
Diffstat (limited to 'src')
-rw-r--r-- | src/core/arm/interpreter/vfp/vfpdouble.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/arm/interpreter/vfp/vfpdouble.cpp b/src/core/arm/interpreter/vfp/vfpdouble.cpp index 7e79ecafbc..cd5b5afa4a 100644 --- a/src/core/arm/interpreter/vfp/vfpdouble.cpp +++ b/src/core/arm/interpreter/vfp/vfpdouble.cpp @@ -287,13 +287,13 @@ static u32 vfp_double_fneg(ARMul_State* state, int dd, int unused, int dm, u32 f static u32 vfp_double_fsqrt(ARMul_State* state, int dd, int unused, int dm, u32 fpscr) { pr_debug("In %s\n", __FUNCTION__); - struct vfp_double vdm, vdd; + struct vfp_double vdm, vdd, *vdp; int ret, tm; vfp_double_unpack(&vdm, vfp_get_double(state, dm)); tm = vfp_double_type(&vdm); if (tm & (VFP_NAN|VFP_INFINITY)) { - struct vfp_double *vdp = &vdd; + vdp = &vdd; if (tm & VFP_NAN) ret = vfp_propagate_nan(vdp, &vdm, NULL, fpscr); |