Diff for /gforth/arch/386/machine.h between versions 1.28 and 1.29

version 1.28, 2004/12/31 13:23:58 version 1.29, 2005/01/28 21:32:19
Line 44 Line 44
 #endif  #endif
 #endif  #endif
   
   #define ASM_SM_SLASH_REM4(d1, n1, n2, n3) \
           asm("idiv %3": "=a"(n3),"=d"(n2) : "A"(d1),"g"(n1):"cc");
   
   #define ASM_UM_SLASH_MOD4(d1, n1, n2, n3) \
           asm("div %3": "=a"(n3),"=d"(n2) : "A"(d1),"g"(n1):"cc");
   
 #include "../generic/machine.h"  #include "../generic/machine.h"
   
 /* define this if the processor cannot exploit instruction-level  /* define this if the processor cannot exploit instruction-level

Removed from v.1.28  
changed lines
  Added in v.1.29


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>