Call __sigsetjmp by correct name.
authorUlrich Drepper <drepper@redhat.com>
Wed, 18 Mar 1998 14:27:59 +0000 (14:27 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 18 Mar 1998 14:27:59 +0000 (14:27 +0000)
sysdeps/arm/bsd-_setjmp.S
sysdeps/arm/bsd-setjmp.S

index 5643c50..6ae6da6 100644 (file)
@@ -1,5 +1,5 @@
 /* BSD `_setjmp' entry point to `sigsetjmp (..., 0)'.  ARM version.
-   Copyright (C) 1997 Free Software Foundation, Inc.
+   Copyright (C) 1997, 1998 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -25,5 +25,5 @@
 
 ENTRY (_setjmp)
        mov     r1, #0
-       b       __sigsetjmp
+       b       C_SYMBOL_NAME(__sigsetjmp)
 END (_setjmp)
index ac7dd96..52622e2 100644 (file)
@@ -1,5 +1,5 @@
 /* BSD `setjmp' entry point to `sigsetjmp (..., 1)'.  ARM version.
-   Copyright (C) 1997 Free Software Foundation, Inc.
+   Copyright (C) 1997, 1998 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -25,5 +25,5 @@
 
 ENTRY (setjmp)
        mov     r1, #1
-       b       __sigsetjmp
+       b       C_SYMBOL_NAME(__sigsetjmp)
 END (setjmp)