summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-10-12 06:34:49 +0000
committerJeff Law <law@gcc.gnu.org>1999-10-12 00:34:49 -0600
commit3c4744ba5d17e100309ddaa0a21a19a03d6e06c2 (patch)
tree378835aa63f0d640f5f135cb435397d3da46c18a
parent62b473787a03449a3af66c18a2b52f1b4c766ee8 (diff)
downloadgcc-3c4744ba5d17e100309ddaa0a21a19a03d6e06c2.tar.gz
Fri Aug 27 19:19:43 CEST 1999 Marc Espie <espie@cvs.openbsd.org>
Fri Aug 27 19:19:43 CEST 1999 Marc Espie <espie@cvs.openbsd.org> * config/openbsd.h (SET_ASM_OP): Define. From-SVN: r29914
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/config/openbsd.h5
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b3dc17a1cfd..27006485a78 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,8 @@
Mon Oct 11 23:35:19 1999 Jeffrey A Law (law@cygnus.com)
+ Fri Aug 27 19:19:43 CEST 1999 Marc Espie <espie@cvs.openbsd.org>
+ * config/openbsd.h (SET_ASM_OP): Define.
+
Mon Oct 4 08:54:12 1999 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
* cppinit.c (is_idchar initializer): Loosen tests to accept
gcc 2.>6 and >2.
diff --git a/gcc/config/openbsd.h b/gcc/config/openbsd.h
index 30f24942341..e95fbdaea0c 100644
--- a/gcc/config/openbsd.h
+++ b/gcc/config/openbsd.h
@@ -165,13 +165,16 @@ Boston, MA 02111-1307, USA. */
/* OpenBSD assembler is hacked to have .type & .size support even in a.out
format object files. Functions size are supported but not activated
- yet (look for GRACE_PERIOD_EXPIRED in gas/config/obj-aout.c). */
+ yet (look for GRACE_PERIOD_EXPIRED in gas/config/obj-aout.c).
+ SET_ASM_OP is needed for attribute alias to work. */
#undef TYPE_ASM_OP
#undef SIZE_ASM_OP
+#undef SET_ASM_OP
#define TYPE_ASM_OP ".type"
#define SIZE_ASM_OP ".size"
+#define SET_ASM_OP ".set"
/* The following macro defines the format used to output the second
operand of the .type assembler directive. */