aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-10-22 11:18:01 +0000
committerUlrich Drepper <drepper@redhat.com>1998-10-22 11:18:01 +0000
commite595c802ca9a9eb2c7d5e72cb7b9437d25063c97 (patch)
tree31932621b67330df17474da686d100078dbe7361
parent7bb38c70c4d7e4303f34a2185cc6f7d558ca0f7c (diff)
downloadglibc-e595c802ca9a9eb2c7d5e72cb7b9437d25063c97.zip
glibc-e595c802ca9a9eb2c7d5e72cb7b9437d25063c97.tar.gz
glibc-e595c802ca9a9eb2c7d5e72cb7b9437d25063c97.tar.bz2
Update.
1998-10-22 Philip Blundell <pb@nexus.co.uk> * sysdeps/unix/arm/sysdep.h: Wrap assembler macros in #ifdef __ASSEMBLER__.
-rw-r--r--ChangeLog5
-rw-r--r--sysdeps/unix/arm/sysdep.h6
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 06dc149..114ab54 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1998-10-22 Philip Blundell <pb@nexus.co.uk>
+
+ * sysdeps/unix/arm/sysdep.h: Wrap assembler macros in #ifdef
+ __ASSEMBLER__.
+
1998-10-21 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/i386/sysdep.h: Remove EXTRAVARS_* macros
diff --git a/sysdeps/unix/arm/sysdep.h b/sysdeps/unix/arm/sysdep.h
index b823b5a..6f0efc0 100644
--- a/sysdeps/unix/arm/sysdep.h
+++ b/sysdeps/unix/arm/sysdep.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -22,5 +22,9 @@
/* Some definitions to allow the assembler in sysdeps/unix/ to build
without needing ARM-specific versions of all the files. */
+#ifdef __ASSEMBLER__
+
#define ret RETINSTR(mov, pc, r14)
#define MOVE(a,b) mov b,a
+
+#endif