diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-01-16 06:03:20 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-01-16 06:03:20 -0500 |
commit | 5aee39a5178a704fce37d837e4d4e8508cd10e94 (patch) | |
tree | 13d4436ae0cd7318d428c92468ad2e26449f970e /gcc | |
parent | d33fc50c3976be7e70ed3536426a4435a7d3484e (diff) | |
download | gcc-5aee39a5178a704fce37d837e4d4e8508cd10e94.zip gcc-5aee39a5178a704fce37d837e4d4e8508cd10e94.tar.gz gcc-5aee39a5178a704fce37d837e4d4e8508cd10e94.tar.bz2 |
(ASM_WEAKEN_LABEL): Deleted; not supported.
From-SVN: r11013
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/freebsd.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gcc/config/i386/freebsd.h b/gcc/config/i386/freebsd.h index 72fcdd1..43afa71 100644 --- a/gcc/config/i386/freebsd.h +++ b/gcc/config/i386/freebsd.h @@ -1,6 +1,6 @@ /* Definitions of target machine for GNU compiler for Intel 80386 running FreeBSD. - Copyright (C) 1988, 1992, 1994 Free Software Foundation, Inc. + Copyright (C) 1988, 1992, 1994, 1996 Free Software Foundation, Inc. Contributed by Poul-Henning Kamp <phk@login.dkuug.dk> This file is part of GNU CC. @@ -120,12 +120,6 @@ Boston, MA 02111-1307, USA. */ #define TYPE_ASM_OP ".type" #define SIZE_ASM_OP ".size" -/* This is how we tell the assembler that a symbol is weak. */ - -#define ASM_WEAKEN_LABEL(FILE,NAME) \ - do { fputs ("\t.weak\t", FILE); assemble_name (FILE, NAME); \ - fputc ('\n', FILE); } while (0) - /* The following macro defines the format used to output the second operand of the .type assembler directive. Different svr4 assemblers expect various different forms for this operand. The one given here |