repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
etc/protocols - sync with NetBSD-8
[minix.git]
/
tests
/
lib
/
csu
/
arch
/
i386
/
h_initfini_align.S
blob
e212989a08ee538ecf860c9c5c674e116afa41cd
1
/* $NetBSD: h_initfini_align.S,v 1.2 2010/12/12 18:21:21 joerg Exp $ */
2
3
#include <machine/asm.h>
4
5
RCSID("$NetBSD: h_initfini_align.S,v 1.2 2010/12/12 18:21:21 joerg Exp $")
6
7
_ENTRY(check_stack_alignment)
8
movl %esp, %eax
9
andl $3, %eax
10
setz %al
11
movzbl %al, %eax
12
ret