summaryrefslogtreecommitdiff
path: root/translate/grt/config/chkstk.S
blob: 1f29245d8388189982ababdada4c215b37cc57b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
	.file		"chkstk.S"
	.version	"01.01"
	
	.text

	/* Function called to loop on the process.  */	
	.align 4
	.type	_chkstk,@function
	.global _chkstk
_chkstk:
	testl	%eax,%eax
	je	_chkstk_zero
	subl	$4,%eax		/* 4 bytes already used by call.  */
	subl	%eax,%esp
	jmp	*(%esp,%eax)
_chkstk_zero:
	ret
	.size	_chkstk, . - _chkstk

	.ident	"Written by T.Gingold"