diff options
Diffstat (limited to 'libc/sysdeps/linux/powerpc/syscall.S')
-rw-r--r-- | libc/sysdeps/linux/powerpc/syscall.S | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/libc/sysdeps/linux/powerpc/syscall.S b/libc/sysdeps/linux/powerpc/syscall.S index 71f711931..b85398416 100644 --- a/libc/sysdeps/linux/powerpc/syscall.S +++ b/libc/sysdeps/linux/powerpc/syscall.S @@ -18,14 +18,10 @@ #include <features.h> - .section ".text" - .globl syscall; - .type syscall,@function; - .align 2; - -.globl syscall; -.type syscall,@function; -.align 2; + .text + .globl syscall + .type syscall,@function + .align 2 syscall: mr 0,3 @@ -36,10 +32,7 @@ syscall: mr 7,8 sc bnslr; -#ifdef __PIC__ - b __syscall_error@plt -#else + b __syscall_error -#endif -.size syscall,.-syscall + .size syscall,.-syscall |