Bug 302173 JS engine doesn't work on PPC/Linux because of gcc optimization, r+a=shaver

This commit is contained in:
wr%rosenauer.org 2005-07-26 13:28:08 +00:00
Родитель fc14a84a45
Коммит 6d44689918
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -73,6 +73,12 @@
#endif /* CROSS_COMPILE */
#ifdef __GNUC__
#define NS_NEVER_INLINE __attribute__((noinline))
#else
#define NS_NEVER_INLINE
#endif
typedef void *prword;
struct align_short {
@ -148,7 +154,7 @@ static void BitsPerByte(void)
bpb = 8;
}
static int StackGrowthDirection(int *dummy1addr)
static int NS_NEVER_INLINE StackGrowthDirection(int *dummy1addr)
{
int dummy2;