diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-07-13 21:28:46 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-07-13 21:28:46 +0000 |
commit | d445a3d82409ff55a41926c2f399b83cd06510af (patch) | |
tree | eaa5133cb097b8721dfa16fa65fbfc25dca6060c /lib/libc | |
parent | 2ca5f2a4a05686d3b6e646d0e112f77b56e018d5 (diff) |
Load symbol address with dla, not la; good thing userland is still limited
to 2GB of vm space.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/arch/mips64/sys/Ovfork.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arch/mips64/sys/Ovfork.S b/lib/libc/arch/mips64/sys/Ovfork.S index 149960e6239..7adca32b0b0 100644 --- a/lib/libc/arch/mips64/sys/Ovfork.S +++ b/lib/libc/arch/mips64/sys/Ovfork.S @@ -1,4 +1,4 @@ -/* $OpenBSD: Ovfork.S,v 1.3 2005/08/07 16:40:15 espie Exp $ */ +/* $OpenBSD: Ovfork.S,v 1.4 2009/07/13 21:28:45 miod Exp $ */ /*- * Copyright (c) 1991, 1993 * The Regents of the University of California. All rights reserved. @@ -50,7 +50,7 @@ SYSLEAF(vfork, FRAMESZ) li v0, SYS_vfork # system call number for vfork syscall beq a3, zero, 1f # jump if no errors - la t9, cerror + LA t9, cerror RESTORE_GP64 PTR_ADDU sp, FRAMESZ jr t9 |