diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-02-07 18:07:40 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-02-07 18:07:40 +0000 |
commit | d63b6766dbd3ca3c713a3f142b09e750af067dc2 (patch) | |
tree | 6602153e02ebd3adcc9500875bffff824c88be52 /libc/sysdeps/linux/arm/crt0pic.S | |
parent | 332e87b2d9198f4518b762782a30ed94000adf68 (diff) |
_void_void_null_func never returned. I noticed this yesterday
in crt0.S and Michiel Thuys <michiel.thuys@intersil.com> noticed
the same thing in crt0pic.S.
-Erik
Diffstat (limited to 'libc/sysdeps/linux/arm/crt0pic.S')
-rw-r--r-- | libc/sysdeps/linux/arm/crt0pic.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/arm/crt0pic.S b/libc/sysdeps/linux/arm/crt0pic.S index 21665a4bb..a668ac31f 100644 --- a/libc/sysdeps/linux/arm/crt0pic.S +++ b/libc/sysdeps/linux/arm/crt0pic.S @@ -48,7 +48,7 @@ _start: bl exit _void_void_null_func: - nop + mov pc, lr .weak __libc_init __libc_init = _void_void_null_func |