summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2016-05-20 14:37:54 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2016-05-20 14:37:54 +0000
commite0d26c0401fcc02001347d8996fc01d17e5d5291 (patch)
tree05b6781c8c3903660904b883ce6ead8559a0156e /sys/arch
parent45b0da8562c757bed47def478bc49fb4c64591aa (diff)
Please int3 guards around unused debug splx versions so we can stop
paying attention to those specific aligns. ok mlarkin
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/amd64/amd64/spl.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amd64/amd64/spl.S b/sys/arch/amd64/amd64/spl.S
index a26db92e1c1..c4b6fe697b6 100644
--- a/sys/arch/amd64/amd64/spl.S
+++ b/sys/arch/amd64/amd64/spl.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: spl.S,v 1.10 2015/07/16 05:10:14 guenther Exp $ */
+/* $OpenBSD: spl.S,v 1.11 2016/05/20 14:37:53 deraadt Exp $ */
/* $NetBSD: spl.S,v 1.3 2004/06/28 09:13:11 fvdl Exp $ */
/*
@@ -84,13 +84,13 @@
*/
.globl _C_LABEL(splhigh), _C_LABEL(splx)
- ALIGN_TEXT
+ .align 16, 0xcc
_C_LABEL(splhigh):
movl $IPL_HIGH,%eax
xchgl %eax,CPUVAR(ILEVEL)
ret
- ALIGN_TEXT
+ .align 16, 0xcc
_C_LABEL(splx):
movl 4(%esp),%eax
movl %eax,CPUVAR(ILEVEL)