Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2017-07-27 00:28:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-07-27 00:29:16 +0300
commit5c963128ea2435375dbfcc0319e9d49df06881c5 (patch)
treee2b85ff9355947117afa331abcbd778909573c2d /intern/atomic
parent17230ec11f367f724b62602b11199b2e3002303b (diff)
Cleanup: remove check for old GCC&PPC
Diffstat (limited to 'intern/atomic')
-rw-r--r--intern/atomic/intern/atomic_ops_utils.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/intern/atomic/intern/atomic_ops_utils.h b/intern/atomic/intern/atomic_ops_utils.h
index bfec9918c16..fa8f39b4e81 100644
--- a/intern/atomic/intern/atomic_ops_utils.h
+++ b/intern/atomic/intern/atomic_ops_utils.h
@@ -63,12 +63,7 @@
#if defined(_MSC_VER)
# define ATOMIC_INLINE static __forceinline
#else
-# if (defined(__APPLE__) && defined(__ppc__))
-/* static inline __attribute__ here breaks osx ppc gcc42 build */
-# define ATOMIC_INLINE static __attribute__((always_inline))
-# else
-# define ATOMIC_INLINE static inline __attribute__((always_inline))
-# endif
+# define ATOMIC_INLINE static inline __attribute__((always_inline))
#endif
#ifndef LIKELY