mirror of https://github.com/PCSX2/pcsx2.git
Fix Linux so that it compiles.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4827 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
1515949a98
commit
0b09b84526
|
@ -244,9 +244,9 @@ static const int __pagesize = PCSX2_PAGESIZE;
|
||||||
# define __fastcall __attribute__((fastcall))
|
# define __fastcall __attribute__((fastcall))
|
||||||
# define _inline __inline__ __attribute__((unused))
|
# define _inline __inline__ __attribute__((unused))
|
||||||
# ifdef NDEBUG
|
# ifdef NDEBUG
|
||||||
# define __forceinline __attribute__((always_inline,unused)) inline
|
# define __forceinline __attribute__((always_inline,unused))
|
||||||
# else
|
# else
|
||||||
# define __forceinline inline
|
# define __forceinline __attribute__((unused))
|
||||||
# endif
|
# endif
|
||||||
# define __noinline __attribute__((noinline))
|
# define __noinline __attribute__((noinline))
|
||||||
# define __hot __attribute__((hot))
|
# define __hot __attribute__((hot))
|
||||||
|
|
|
@ -100,7 +100,7 @@ struct GS_SIGNAL {
|
||||||
void Reset() { memzero(*this); }
|
void Reset() { memzero(*this); }
|
||||||
};
|
};
|
||||||
|
|
||||||
__fi void incTag(u32& offset, u32& size, u32 incAmount) {
|
static __fi void incTag(u32& offset, u32& size, u32 incAmount) {
|
||||||
size += incAmount;
|
size += incAmount;
|
||||||
offset += incAmount;
|
offset += incAmount;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue