diff options
author | 2016-05-29 07:59:36 +0000 | |
---|---|---|
committer | 2016-05-29 07:59:36 +0000 | |
commit | 8a57d2a83c333b9f177a361b7ac62e1b5bf5cb3b (patch) | |
tree | 39a238262f37eecb42068929b18e824f3cf7777a /lib/libc | |
parent | Stop building u-boot kernel and ramdisk images. The kernel make targets (diff) | |
download | wireguard-openbsd-8a57d2a83c333b9f177a361b7ac62e1b5bf5cb3b.tar.xz wireguard-openbsd-8a57d2a83c333b9f177a361b7ac62e1b5bf5cb3b.zip |
Only require 4 byte alignment on ILP32 archs
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/arch/hppa/gen/setjmp.S | 4 | ||||
-rw-r--r-- | lib/libc/arch/powerpc/gen/setjmp.S | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/arch/hppa/gen/setjmp.S b/lib/libc/arch/hppa/gen/setjmp.S index a5c02045dcb..f8c48db2658 100644 --- a/lib/libc/arch/hppa/gen/setjmp.S +++ b/lib/libc/arch/hppa/gen/setjmp.S @@ -1,4 +1,4 @@ -/* $OpenBSD: setjmp.S,v 1.10 2016/05/23 00:24:50 guenther Exp $ */ +/* $OpenBSD: setjmp.S,v 1.11 2016/05/29 07:59:36 guenther Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -36,7 +36,7 @@ #include "SYS.h" .section .openbsd.randomdata,"aw",@progbits - .align 8 + .align 4 .L__jmpxor .zero 4*2 ; (r2/rp, r30/sp) diff --git a/lib/libc/arch/powerpc/gen/setjmp.S b/lib/libc/arch/powerpc/gen/setjmp.S index bced84b0b66..6da84b17fb4 100644 --- a/lib/libc/arch/powerpc/gen/setjmp.S +++ b/lib/libc/arch/powerpc/gen/setjmp.S @@ -1,4 +1,4 @@ -/* $OpenBSD: setjmp.S,v 1.12 2016/05/29 06:16:52 guenther Exp $ */ +/* $OpenBSD: setjmp.S,v 1.13 2016/05/29 07:59:36 guenther Exp $ */ /* * Copyright (c) 1996 Dale Rahn. All rights reserved. * @@ -55,7 +55,7 @@ #define JMP_sig 0x60 .section .openbsd.randomdata,"aw",@progbits - .balign 8 + .balign 4 .globl __jmpxor .hidden __jmpxor __jmpxor: |