diff options
author | 2021-01-18 01:54:37 +1100 | |
---|---|---|
committer | 2021-01-18 01:54:37 +1100 | |
commit | 255d4e778712227becba3982d5ba062543d1519c (patch) | |
tree | a14c8830f6f211caa94e490719e91c2a8bd78d1e /src/osd/eigccppc.h | |
parent | 6e1bbe8be89349038995df2aaa4f11019439e39e (diff) |
osd: Make preprocessor usage a bit more consistent in inline utilties for PPC/ARM.
Diffstat (limited to 'src/osd/eigccppc.h')
-rw-r--r-- | src/osd/eigccppc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osd/eigccppc.h b/src/osd/eigccppc.h index 824657097b0..3a1b2093d4e 100644 --- a/src/osd/eigccppc.h +++ b/src/osd/eigccppc.h @@ -204,7 +204,7 @@ _recip_approx(float value) multiply and return the full 128 bit result -------------------------------------------------*/ -#ifdef __ppc64__ +#if defined(__ppc64__) #define mul_64x64 _mul_64x64 inline int64_t ATTR_FORCE_INLINE _mul_64x64(int64_t a, int64_t b, int64_t &hi) @@ -221,7 +221,7 @@ _mul_64x64(int64_t a, int64_t b, int64_t &hi) bit multiply and return the full 128 bit result -------------------------------------------------*/ -#ifdef __ppc64__ +#if defined(__ppc64__) #define mulu_64x64 _mulu_64x64 inline uint64_t ATTR_FORCE_INLINE _mulu_64x64(uint64_t a, uint64_t b, uint64_t &hi) |