From dad8fb6d64a2b12a7b929f1c63b7dfd6b177b3ea Mon Sep 17 00:00:00 2001 From: gingold Date: Thu, 5 Oct 2006 00:23:04 +0000 Subject: add one more underscore to chkstk, use program path for install path (windows) --- translate/grt/config/chkstk.S | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'translate/grt/config') diff --git a/translate/grt/config/chkstk.S b/translate/grt/config/chkstk.S index 1f29245..79abfb2 100644 --- a/translate/grt/config/chkstk.S +++ b/translate/grt/config/chkstk.S @@ -5,16 +5,16 @@ /* Function called to loop on the process. */ .align 4 - .type _chkstk,@function - .global _chkstk -_chkstk: + .type __chkstk,@function + .global __chkstk +__chkstk: testl %eax,%eax - je _chkstk_zero + je 0f subl $4,%eax /* 4 bytes already used by call. */ subl %eax,%esp jmp *(%esp,%eax) -_chkstk_zero: +0: ret - .size _chkstk, . - _chkstk + .size __chkstk, . - __chkstk .ident "Written by T.Gingold" -- cgit