diff options
author | Ulrich Drepper <drepper@redhat.com> | 1997-05-21 01:40:24 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1997-05-21 01:40:24 +0000 |
commit | bd85bd75004ca186a147a3cef8433108fdf444b1 (patch) | |
tree | c32e5b25735322ea187fc51bad48efe3ef4851a9 /sysdeps | |
parent | ecda085689903d3d7e452c86d8b88b374e33450b (diff) | |
download | glibc-bd85bd75004ca186a147a3cef8433108fdf444b1.tar glibc-bd85bd75004ca186a147a3cef8433108fdf444b1.tar.gz glibc-bd85bd75004ca186a147a3cef8433108fdf444b1.tar.bz2 glibc-bd85bd75004ca186a147a3cef8433108fdf444b1.zip |
Add definition for ret and MOVE.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/arm/sysdep.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdeps/unix/arm/sysdep.h b/sysdeps/unix/arm/sysdep.h index 18e812b9f1..1c580731ba 100644 --- a/sysdeps/unix/arm/sysdep.h +++ b/sysdeps/unix/arm/sysdep.h @@ -19,3 +19,8 @@ Cambridge, MA 02139, USA. */ #include <sysdeps/unix/sysdep.h> #include <sysdeps/arm/sysdep.h> +/* Some definitions to allow the assembler in sysdeps/unix/*.S to build + without needing ARM-specific versions of all the files. */ + +#define ret RETINSTR(mov, pc, r14) +#define MOVE(a,b) mov b,a |