diff options
author | Ulrich Drepper <drepper@redhat.com> | 1997-05-25 19:08:15 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1997-05-25 19:08:15 +0000 |
commit | 5d42a4c2ccd9d7ad45593c5355b876dbd8f85d96 (patch) | |
tree | 82aa39f3dd95b5ff632a3029383b001987c4f06b /sysdeps | |
parent | 0ad9e4678488a6200d3c3361683fc8170853f13a (diff) | |
download | glibc-5d42a4c2ccd9d7ad45593c5355b876dbd8f85d96.tar glibc-5d42a4c2ccd9d7ad45593c5355b876dbd8f85d96.tar.gz glibc-5d42a4c2ccd9d7ad45593c5355b876dbd8f85d96.tar.bz2 glibc-5d42a4c2ccd9d7ad45593c5355b876dbd8f85d96.zip |
(__data_start): Change local label "nofini" to ".Lnofini".
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/i386/elf/start.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/i386/elf/start.S b/sysdeps/i386/elf/start.S index 8b7faaefc4..706e5c963f 100644 --- a/sysdeps/i386/elf/start.S +++ b/sysdeps/i386/elf/start.S @@ -50,12 +50,12 @@ _start: pointer; hopefully it will be zero so we don't try to call random pointers. */ testl %edx,%edx - jz nofini + jz .Lnofini pushl %edx call atexit popl %eax /* Pop value to unused register to remove argument from stack. */ -nofini: +.Lnofini: /* Do essential libc initialization. In statically linked programs under the GNU Hurd, this is what sets up the |