1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-20 11:11:24 +00:00

Change ".align 3" to ".p2align 3" so that this works with ia64.

This commit is contained in:
Doug Rabson 2000-09-29 13:35:57 +00:00
parent d0eedf572f
commit c7821f3ffd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=66456

View File

@ -51,10 +51,10 @@
* a problem.
*/
#ifdef __alpha__
#if defined(__alpha__) || defined(__ia64__)
#define MAKE_SET(set, sym) \
static void const * const __set_##set##_sym_##sym = &sym; \
__asm(".align 3"); \
__asm(".p2align 3"); \
__asm(".section .set." #set ",\"aw\""); \
__asm(".quad " #sym); \
__asm(".previous")