summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-08-21 17:30:29 +0200
committerbunnei <bunneidev@gmail.com>2014-08-21 17:30:29 +0200
commitc9add2e4b220d4a2b6f7e43cfb1cb23d24c874b3 (patch)
tree5fd5835b3b57946d81d91d269ea3647720d87a7d /src
parentMerge pull request #62 from archshift/revert-49-redundantloop (diff)
parentARM: Remove a forgotten const in vfp. (diff)
downloadyuzu-c9add2e4b220d4a2b6f7e43cfb1cb23d24c874b3.tar
yuzu-c9add2e4b220d4a2b6f7e43cfb1cb23d24c874b3.tar.gz
yuzu-c9add2e4b220d4a2b6f7e43cfb1cb23d24c874b3.tar.bz2
yuzu-c9add2e4b220d4a2b6f7e43cfb1cb23d24c874b3.tar.lz
yuzu-c9add2e4b220d4a2b6f7e43cfb1cb23d24c874b3.tar.xz
yuzu-c9add2e4b220d4a2b6f7e43cfb1cb23d24c874b3.tar.zst
yuzu-c9add2e4b220d4a2b6f7e43cfb1cb23d24c874b3.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/arm/interpreter/vfp/vfpdouble.cpp2
-rw-r--r--src/core/arm/interpreter/vfp/vfpsingle.cpp2
2 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 7f975cbeb..5ae99b88a 100644
--- a/src/core/arm/interpreter/vfp/vfpdouble.cpp
+++ b/src/core/arm/interpreter/vfp/vfpdouble.cpp
@@ -895,7 +895,7 @@ vfp_double_multiply(struct vfp_double *vdd, struct vfp_double *vdn,
#define NEG_SUBTRACT (1 << 1)
static u32
-vfp_double_multiply_accumulate(ARMul_State* state, int dd, int dn, int dm, u32 fpscr, u32 negate, char *func)
+vfp_double_multiply_accumulate(ARMul_State* state, int dd, int dn, int dm, u32 fpscr, u32 negate, const char *func)
{
struct vfp_double vdd, vdp, vdn, vdm;
u32 exceptions;
diff --git a/src/core/arm/interpreter/vfp/vfpsingle.cpp b/src/core/arm/interpreter/vfp/vfpsingle.cpp
index 602713cff..0fcc85266 100644
--- a/src/core/arm/interpreter/vfp/vfpsingle.cpp
+++ b/src/core/arm/interpreter/vfp/vfpsingle.cpp
@@ -917,7 +917,7 @@ vfp_single_multiply(struct vfp_single *vsd, struct vfp_single *vsn, struct vfp_s
#define NEG_SUBTRACT (1 << 1)
static u32
-vfp_single_multiply_accumulate(ARMul_State* state, int sd, int sn, s32 m, u32 fpscr, u32 negate, char *func)
+vfp_single_multiply_accumulate(ARMul_State* state, int sd, int sn, s32 m, u32 fpscr, u32 negate, const char *func)
{
struct vfp_single vsd, vsp, vsn, vsm;
u32 exceptions;