* es.po: Update.
[official-gcc.git] / libsanitizer / sanitizer_common / sanitizer_linux_mips64.S
blob0b76f3a473a234a0ad79abacb6e415a22d1cf80c
1 // This file is dual licensed under the MIT and the University of Illinois Open
2 // Avoid being marked as needing an executable stack:
3 #if defined(__linux__) && defined(__ELF__)
4 .section .note.GNU-stack,"",%progbits
5 #endif
7 // Further contents are mips64 only:
8 #if defined(__linux__) && defined(__mips64)
10 .section .text
11 .set noreorder
12 .globl internal_sigreturn
13 .type internal_sigreturn, @function
14 internal_sigreturn:
16         li $v0,5211 // #5211 is for SYS_rt_sigreturn
17         syscall
19 .size internal_sigreturn, .-internal_sigreturn
21 #endif // defined(__linux__) && defined(__mips64)