Drop text alignment back to 16 - the usual size of blocks the instruction

decoder works with.
This commit is contained in:
ad 2007-11-29 22:03:48 +00:00
parent f377e7f907
commit 0b8a0d143c

View File

@ -1,4 +1,4 @@
/* $NetBSD: asm.h,v 1.9 2007/10/17 19:53:03 garbled Exp $ */
/* $NetBSD: asm.h,v 1.10 2007/11/29 22:03:48 ad Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -61,9 +61,9 @@
/* let kernels and others override entrypoint alignment */
#ifndef _ALIGN_TEXT
# ifdef _STANDALONE
# define _ALIGN_TEXT .align 4
# define _ALIGN_TEXT .align 3
# else
# define _ALIGN_TEXT .align 32
# define _ALIGN_TEXT .align 16
# endif
#endif