diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2003-04-17 03:43:20 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2003-04-17 03:43:20 +0000 |
commit | 6bb480fd6df5d8e084142751e0b25183459561d6 (patch) | |
tree | baf77d01ee85f750e1cf66d7c3c5fd85b7b5bc07 /sys/arch/i386/stand/libsa/alloca.S | |
parent | d36015cb7ad92f7024a5754fc18618f0b0e13139 (diff) |
i386 ELF bootloader. developed with weingart@
Diffstat (limited to 'sys/arch/i386/stand/libsa/alloca.S')
-rw-r--r-- | sys/arch/i386/stand/libsa/alloca.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/libsa/alloca.S b/sys/arch/i386/stand/libsa/alloca.S index d6b2cc40f84..ac663e5cd1c 100644 --- a/sys/arch/i386/stand/libsa/alloca.S +++ b/sys/arch/i386/stand/libsa/alloca.S @@ -38,7 +38,7 @@ #if defined(LIBC_SCCS) .text - .asciz "$OpenBSD: alloca.S,v 1.2 1998/02/24 22:06:43 weingart Exp $" + .asciz "$OpenBSD: alloca.S,v 1.3 2003/04/17 03:43:18 drahn Exp $" #endif /* like alloc, but automatic free in return */ @@ -55,4 +55,4 @@ ENTRY(alloca) pushl 4(%ecx) pushl 0(%ecx) pushl %eax /* dummy to pop at callsite */ - jmp %edx /* "return" */ + jmp *%edx /* "return" */ |