diff options
| author | 2014-12-30 13:08:56 -0500 | |
|---|---|---|
| committer | 2014-12-30 13:08:56 -0500 | |
| commit | 5894c407c20a64e98d75bc1c734b30e30c4b838b (patch) | |
| tree | 1a5e0a42011c7c0b729924ff4987133c7cac3a11 | |
| parent | Merge pull request #371 from lioncash/vfp (diff) | |
| download | yuzu-5894c407c20a64e98d75bc1c734b30e30c4b838b.tar.gz yuzu-5894c407c20a64e98d75bc1c734b30e30c4b838b.tar.xz yuzu-5894c407c20a64e98d75bc1c734b30e30c4b838b.zip | |
vfp: Get rid of a few warnings
| -rw-r--r-- | src/core/arm/skyeye_common/vfp/vfpdouble.cpp | 2 | ||||
| -rw-r--r-- | src/core/arm/skyeye_common/vfp/vfpsingle.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/arm/skyeye_common/vfp/vfpdouble.cpp b/src/core/arm/skyeye_common/vfp/vfpdouble.cpp index 765c1f6bc..a9df490ba 100644 --- a/src/core/arm/skyeye_common/vfp/vfpdouble.cpp +++ b/src/core/arm/skyeye_common/vfp/vfpdouble.cpp | |||
| @@ -1064,7 +1064,7 @@ vfp_double_multiply(struct vfp_double *vdd, struct vfp_double *vdn, | |||
| 1064 | #define NEG_SUBTRACT (1 << 1) | 1064 | #define NEG_SUBTRACT (1 << 1) |
| 1065 | 1065 | ||
| 1066 | static u32 | 1066 | static u32 |
| 1067 | vfp_double_multiply_accumulate(ARMul_State* state, int dd, int dn, int dm, u32 fpscr, u32 negate, char *func) | 1067 | vfp_double_multiply_accumulate(ARMul_State* state, int dd, int dn, int dm, u32 fpscr, u32 negate, const char *func) |
| 1068 | { | 1068 | { |
| 1069 | struct vfp_double vdd, vdp, vdn, vdm; | 1069 | struct vfp_double vdd, vdp, vdn, vdm; |
| 1070 | u32 exceptions; | 1070 | u32 exceptions; |
diff --git a/src/core/arm/skyeye_common/vfp/vfpsingle.cpp b/src/core/arm/skyeye_common/vfp/vfpsingle.cpp index 6c33d8b78..08d0d719f 100644 --- a/src/core/arm/skyeye_common/vfp/vfpsingle.cpp +++ b/src/core/arm/skyeye_common/vfp/vfpsingle.cpp | |||
| @@ -957,7 +957,7 @@ vfp_single_multiply(struct vfp_single *vsd, struct vfp_single *vsn, struct vfp_s | |||
| 957 | #define NEG_SUBTRACT (1 << 1) | 957 | #define NEG_SUBTRACT (1 << 1) |
| 958 | 958 | ||
| 959 | static u32 | 959 | static u32 |
| 960 | vfp_single_multiply_accumulate(ARMul_State* state, int sd, int sn, s32 m, u32 fpscr, u32 negate, char *func) | 960 | vfp_single_multiply_accumulate(ARMul_State* state, int sd, int sn, s32 m, u32 fpscr, u32 negate, const char *func) |
| 961 | { | 961 | { |
| 962 | 962 | ||
| 963 | { | 963 | { |