diff options
| author | Wilco Dijkstra <wilco.dijkstra@arm.com> | 2024-12-31 18:07:36 +0000 |
|---|---|---|
| committer | Wilco Dijkstra <wilco.dijkstra@arm.com> | 2025-02-24 14:15:15 +0000 |
| commit | ce2f26a22e6b6f5c108d156afd9b43a452bb024c (patch) | |
| tree | e15c4ad12f990eac03d54cec8702208c66573c88 /sysdeps/unix/sysv/linux | |
| parent | be0cfd848d9ad7378800d6302bc11467cf2b514f (diff) | |
| download | glibc-ce2f26a22e6b6f5c108d156afd9b43a452bb024c.tar.xz glibc-ce2f26a22e6b6f5c108d156afd9b43a452bb024c.zip | |
AArch64: Remove PTR_ARG/SIZE_ARG defines
This series removes various ILP32 defines that are now
no longer needed.
Remove PTR_ARG/SIZE_ARG.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/unix/sysv/linux')
| -rw-r--r-- | sysdeps/unix/sysv/linux/aarch64/clone.S | 6 | ||||
| -rw-r--r-- | sysdeps/unix/sysv/linux/aarch64/clone3.S | 4 | ||||
| -rw-r--r-- | sysdeps/unix/sysv/linux/aarch64/getcontext.S | 1 | ||||
| -rw-r--r-- | sysdeps/unix/sysv/linux/aarch64/setcontext.S | 1 | ||||
| -rw-r--r-- | sysdeps/unix/sysv/linux/aarch64/swapcontext.S | 1 |
5 files changed, 0 insertions, 13 deletions
diff --git a/sysdeps/unix/sysv/linux/aarch64/clone.S b/sysdeps/unix/sysv/linux/aarch64/clone.S index 97e1afa57f..40015c6933 100644 --- a/sysdeps/unix/sysv/linux/aarch64/clone.S +++ b/sysdeps/unix/sysv/linux/aarch64/clone.S @@ -33,12 +33,6 @@ */ .text ENTRY(__clone) - PTR_ARG (0) - PTR_ARG (1) - PTR_ARG (3) - PTR_ARG (4) - PTR_ARG (5) - PTR_ARG (6) /* Save args for the child. */ mov x10, x0 mov x11, x2 diff --git a/sysdeps/unix/sysv/linux/aarch64/clone3.S b/sysdeps/unix/sysv/linux/aarch64/clone3.S index 443e117bf9..c9ca845ef2 100644 --- a/sysdeps/unix/sysv/linux/aarch64/clone3.S +++ b/sysdeps/unix/sysv/linux/aarch64/clone3.S @@ -36,10 +36,6 @@ .text ENTRY(__clone3) - PTR_ARG (0) - PTR_ARG (1) - PTR_ARG (3) - PTR_ARG (4) /* Save args for the child. */ mov x10, x0 /* cl_args */ mov x11, x2 /* func */ diff --git a/sysdeps/unix/sysv/linux/aarch64/getcontext.S b/sysdeps/unix/sysv/linux/aarch64/getcontext.S index d9dd066051..6e7fc241f5 100644 --- a/sysdeps/unix/sysv/linux/aarch64/getcontext.S +++ b/sysdeps/unix/sysv/linux/aarch64/getcontext.S @@ -30,7 +30,6 @@ .text ENTRY(__getcontext) - PTR_ARG (0) /* The saved context will return to the getcontext() call point with a return value of 0 */ str xzr, [x0, oX0 + 0 * SZREG] diff --git a/sysdeps/unix/sysv/linux/aarch64/setcontext.S b/sysdeps/unix/sysv/linux/aarch64/setcontext.S index 695fc5b9b5..022a263c47 100644 --- a/sysdeps/unix/sysv/linux/aarch64/setcontext.S +++ b/sysdeps/unix/sysv/linux/aarch64/setcontext.S @@ -34,7 +34,6 @@ .text ENTRY (__setcontext) - PTR_ARG (0) /* Save a copy of UCP. */ mov x9, x0 diff --git a/sysdeps/unix/sysv/linux/aarch64/swapcontext.S b/sysdeps/unix/sysv/linux/aarch64/swapcontext.S index 893a902866..cc41253a13 100644 --- a/sysdeps/unix/sysv/linux/aarch64/swapcontext.S +++ b/sysdeps/unix/sysv/linux/aarch64/swapcontext.S @@ -27,7 +27,6 @@ .text ENTRY(__swapcontext) - PTR_ARG (0) /* Set the value returned when swapcontext() returns in this context. And set up x1 to become the return address of the caller, so we can return there with a normal RET instead of an indirect jump. */ |
