Replace MACHINE/CHIP macros with compiler macros

This commit is contained in:
Arun Thomas
2012-08-06 12:55:50 +02:00
parent 5919360736
commit 6723dcfab7
27 changed files with 45 additions and 148 deletions

View File

@@ -311,7 +311,7 @@ static char *p_rts_flags_str(int flags)
/*===========================================================================*
* proctab_dmp *
*===========================================================================*/
#if (CHIP == INTEL)
#if defined(__i386__)
void proctab_dmp()
{
/* Proc table dump */
@@ -339,7 +339,7 @@ void proctab_dmp()
printf("\n");
}
}
#endif /* (CHIP == INTEL) */
#endif /* defined(__i386__) */
/*===========================================================================*
* procstack_dmp *