]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2002-11-05 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@gnu.org>
Wed, 6 Nov 2002 03:19:47 +0000 (03:19 +0000)
committerRoland McGrath <roland@gnu.org>
Wed, 6 Nov 2002 03:19:47 +0000 (03:19 +0000)
* sysdeps/unix/mips/sysdep.h [! __PIC__] (PSEUDO): Add nop after jump.
From Johannes Stezenbach <js@convergence.de>.

sysdeps/unix/mips/sysdep.h

index c25969610ae6bb8db779181689b525bedccafa90..fd5191601a9d7d2a721722fab34d61c5022e29e1 100644 (file)
@@ -49,7 +49,8 @@ syse1:
 #define PSEUDO(name, syscall_name, args) \
   .set noreorder;                                                            \
   .align 2;                                                                  \
-  99: j __syscall_error;                                                             \
+  99: j __syscall_error;                                                     \
+  nop;                                                                       \
   ENTRY(name)                                                                \
   .set noreorder;                                                            \
   li v0, SYS_ify(syscall_name);                                                      \