mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 05:51:27 +12:00
Fix NEVER_INLINE attribute
Similarly to FORCE_INLINE, it doesn't imply inline on some compilers.
This commit is contained in:
parent
dea8aa675a
commit
2d38d8a639
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define SAFE_BUFFERS __attribute__((no_stack_protector))
|
#define SAFE_BUFFERS __attribute__((no_stack_protector))
|
||||||
#define NEVER_INLINE __attribute__((noinline))
|
#define NEVER_INLINE __attribute__((noinline)) inline
|
||||||
#define FORCE_INLINE __attribute__((always_inline)) inline
|
#define FORCE_INLINE __attribute__((always_inline)) inline
|
||||||
#define RESTRICT __restrict__
|
#define RESTRICT __restrict__
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue