diff options
author | 2005-05-10 11:31:21 +0000 | |
---|---|---|
committer | 2005-05-10 11:31:21 +0000 | |
commit | de7a089ce3b1222a716b6ca2a88624aa20d9a85f (patch) | |
tree | 2de72a645e42131ec4ba305e3b9b171ba9b661ac | |
parent | no reason to use long as we are most definately all 32bit (diff) | |
download | wireguard-openbsd-de7a089ce3b1222a716b6ca2a88624aa20d9a85f.tar.xz wireguard-openbsd-de7a089ce3b1222a716b6ca2a88624aa20d9a85f.zip |
explicitly align unwind data to 8 bytes; from chs
-rw-r--r-- | sys/arch/hppa/conf/ld.script | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/hppa/conf/ld.script b/sys/arch/hppa/conf/ld.script index c49dad17f1f..f7239ea126f 100644 --- a/sys/arch/hppa/conf/ld.script +++ b/sys/arch/hppa/conf/ld.script @@ -1,4 +1,4 @@ -/* $OpenBSD: ld.script,v 1.13 2004/04/07 18:24:19 mickey Exp $ */ +/* $OpenBSD: ld.script,v 1.14 2005/05/10 11:31:21 mickey Exp $ */ /* * Copyright (c) 2003 Michael Shalayeff @@ -49,6 +49,7 @@ SECTIONS { __rodata_start = .; *(.rodata) *(.rodata1) + . = ALIGN(8); __unwind_start = .; *(.PARISC.unwind) __unwind_end = .; |