summaryrefslogtreecommitdiffstats
path: root/src/core/arm/interpreter/vfp/vfp_helper.h
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2014-05-17 19:55:45 +0200
committerarchshift <admin@archshift.com>2014-05-17 19:55:45 +0200
commitc396a5ac576c172951e129f19a987398d53dc95c (patch)
treedfe448a8080bf272854c60e6b6e3ff0724f76558 /src/core/arm/interpreter/vfp/vfp_helper.h
parentUpdated cmakelists (diff)
downloadyuzu-c396a5ac576c172951e129f19a987398d53dc95c.tar
yuzu-c396a5ac576c172951e129f19a987398d53dc95c.tar.gz
yuzu-c396a5ac576c172951e129f19a987398d53dc95c.tar.bz2
yuzu-c396a5ac576c172951e129f19a987398d53dc95c.tar.lz
yuzu-c396a5ac576c172951e129f19a987398d53dc95c.tar.xz
yuzu-c396a5ac576c172951e129f19a987398d53dc95c.tar.zst
yuzu-c396a5ac576c172951e129f19a987398d53dc95c.zip
Diffstat (limited to '')
-rw-r--r--src/core/arm/interpreter/vfp/vfp_helper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/arm/interpreter/vfp/vfp_helper.h b/src/core/arm/interpreter/vfp/vfp_helper.h
index 80f9a93f4..b222e79f1 100644
--- a/src/core/arm/interpreter/vfp/vfp_helper.h
+++ b/src/core/arm/interpreter/vfp/vfp_helper.h
@@ -50,7 +50,7 @@
#define pr_info //printf
#define pr_debug //printf
-static u32 fls(int x);
+static u32 vfp_fls(int x);
#define do_div(n, base) {n/=base;}
/* From vfpinstr.h */
@@ -508,7 +508,7 @@ struct op {
u32 flags;
};
-static inline u32 fls(int x)
+static u32 vfp_fls(int x)
{
int r = 32;