Marc Espie <espie@cvs.openbsd.org>

* config/openbsd.h: Define SET_ASM_OP.
        * tm.texi: cross-reference SET_ASM_OP in the index.

From-SVN: r28938
This commit is contained in:
Marc Espie 1999-08-27 21:03:30 +00:00 committed by Richard Henderson
parent aa0b446591
commit 203cb4ef87
3 changed files with 11 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Fri Aug 27 14:01:19 1999 Marc Espie <espie@cvs.openbsd.org>
* config/openbsd.h: Define SET_ASM_OP.
* tm.texi: cross-reference SET_ASM_OP in the index.
1999-08-27 13:27 -0700 Zack Weinberg <zack@bitmover.com>
* rtl.c: Define CONST_DOUBLE_FORMAT to the appropriate format

View file

@ -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. */

View file

@ -5772,6 +5772,7 @@ between the name and the number will suffice.
A C statement to output to the stdio stream @var{stream} assembler code
which defines (equates) the symbol @var{name} to have the value @var{value}.
@findex SET_ASM_OP
If SET_ASM_OP is defined, a default definition is provided which is
correct for most systems.
@ -5792,6 +5793,7 @@ the difference of the two symbols @var{high} and @var{low}, i.e.
and @var{low} are already known by the assembler so that the difference
resolves into a constant.
@findex SET_ASM_OP
If SET_ASM_OP is defined, a default definition is provided which is
correct for most systems.