From: Roland McGrath Date: Wed, 6 Nov 2002 03:19:47 +0000 (+0000) Subject: 2002-11-05 Roland McGrath X-Git-Tag: glibc-2.16-ports-before-merge~1536 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9752ed23d7ad94d7539a0ddcd1288687aa5bb2a2;p=thirdparty%2Fglibc.git 2002-11-05 Roland McGrath * sysdeps/unix/mips/sysdep.h [! __PIC__] (PSEUDO): Add nop after jump. From Johannes Stezenbach . --- diff --git a/sysdeps/unix/mips/sysdep.h b/sysdeps/unix/mips/sysdep.h index c25969610ae..fd5191601a9 100644 --- a/sysdeps/unix/mips/sysdep.h +++ b/sysdeps/unix/mips/sysdep.h @@ -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); \