use PTR_WORD for __curbrk and minbrk instead of .word, the new version

wil support all ABIs.

Approved by:	rrs (mentor)
This commit is contained in:
Jayachandran C. 2010-06-25 05:36:36 +00:00
parent d12582eb67
commit 60ddfa2837
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=209521
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ __FBSDID("$FreeBSD$");
.data
_C_LABEL(minbrk):
.word _C_LABEL(_end)
PTR_WORD _C_LABEL(_end)
.text
LEAF(__sys_brk)

View File

@ -46,7 +46,7 @@ __FBSDID("$FreeBSD$");
.data
_C_LABEL(__curbrk):
.word _C_LABEL(_end)
PTR_WORD _C_LABEL(_end)
.text
LEAF(__sys_sbrk)