diff options
author | bunnei <ericbunnie@gmail.com> | 2014-05-17 03:25:33 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-05-17 03:25:33 +0200 |
commit | 92be5517c40fd9abf89455f606c321b629c0698e (patch) | |
tree | 3b9d45d77897ba308d09df2567d3bead5dddbd25 /src/core/arm/interpreter/vfp/vfpsingle.cpp | |
parent | another VFP fix for GCC (diff) | |
download | yuzu-92be5517c40fd9abf89455f606c321b629c0698e.tar yuzu-92be5517c40fd9abf89455f606c321b629c0698e.tar.gz yuzu-92be5517c40fd9abf89455f606c321b629c0698e.tar.bz2 yuzu-92be5517c40fd9abf89455f606c321b629c0698e.tar.lz yuzu-92be5517c40fd9abf89455f606c321b629c0698e.tar.xz yuzu-92be5517c40fd9abf89455f606c321b629c0698e.tar.zst yuzu-92be5517c40fd9abf89455f606c321b629c0698e.zip |
Diffstat (limited to 'src/core/arm/interpreter/vfp/vfpsingle.cpp')
-rw-r--r-- | src/core/arm/interpreter/vfp/vfpsingle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/arm/interpreter/vfp/vfpsingle.cpp b/src/core/arm/interpreter/vfp/vfpsingle.cpp index 34de030bf..05279f5ce 100644 --- a/src/core/arm/interpreter/vfp/vfpsingle.cpp +++ b/src/core/arm/interpreter/vfp/vfpsingle.cpp @@ -327,13 +327,13 @@ u32 vfp_estimate_sqrt_significand(u32 exponent, u32 significand) static u32 vfp_single_fsqrt(ARMul_State* state, int sd, int unused, s32 m, u32 fpscr) { - struct vfp_single vsm, vsd; + struct vfp_single vsm, vsd, *vsp; int ret, tm; vfp_single_unpack(&vsm, m); tm = vfp_single_type(&vsm); if (tm & (VFP_NAN|VFP_INFINITY)) { - struct vfp_single *vsp = &vsd; + vsp = &vsd; if (tm & VFP_NAN) ret = vfp_propagate_nan(vsp, &vsm, NULL, fpscr); |