Define STACKALIGNBYTES and STACKALIGN.

This commit is contained in:
Olivier Houchard 2004-09-23 22:27:42 +00:00
parent a40d2bb653
commit c038ee8196

View File

@ -54,6 +54,8 @@
#define _ALIGN(p) (((unsigned)(p) + _ALIGNBYTES) & ~_ALIGNBYTES)
#endif
#define STACKALIGNBYTES (8 - 1)
#define STACKALIGN(p) ((u_int)(p) & ~STACKALIGNBYTES)
#ifndef _MACHINE
#define _MACHINE "arm"
#endif