1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

* sysdeps/unix/mips/sysdep.h [! __PIC__] (PSEUDO): Add nop after jump.

From Johannes Stezenbach <js@convergence.de>.
This commit is contained in:
Roland McGrath
2002-11-06 03:19:51 +00:00
parent df5391ff90
commit be280d0eaf
2 changed files with 5 additions and 1 deletions

View 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); \