Align to 2**3, not 2**5. This works around a bug in gas 2.11.2

which was uncovered by the new crti/crtn (bug is fixed in newer
versions of gas).
This commit is contained in:
thorpej 2002-11-22 17:25:46 +00:00
parent 6a088e4e31
commit 6a34f16f1f
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: initfini_asm.S,v 1.1 2001/07/17 03:41:04 thorpej Exp $ */
/* $NetBSD: initfini_asm.S,v 1.2 2002/11/22 17:25:46 thorpej Exp $ */
/*
* This file placed in the public domain.
@ -11,12 +11,12 @@
br ra, 1f
1: LDGP(ra)
jsr ra, i_am_init
.align 5
.align 3
.previous
.section .fini, "ax", @progbits
br ra, 1f
1: LDGP(ra)
jsr ra, i_am_fini
.align 5
.align 3
.previous