diff options
author | obrien <obrien@FreeBSD.org> | 2002-05-07 02:25:52 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-05-07 02:25:52 +0000 |
commit | 9ced7090709134f9b1dade548d333650f4e13ea0 (patch) | |
tree | 78260e8283bbd542ff9681634307d5563e561a2d | |
parent | 670609f4cc10166524346dc43ecb9e4eaf162fdb (diff) | |
download | FreeBSD-src-9ced7090709134f9b1dade548d333650f4e13ea0.zip FreeBSD-src-9ced7090709134f9b1dade548d333650f4e13ea0.tar.gz |
The default ASM_OUTPUT_ADDR_DIFF_ELT will now handle our mixed a.out/ELF.
-rw-r--r-- | contrib/gcc/config/i386/freebsd.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/contrib/gcc/config/i386/freebsd.h b/contrib/gcc/config/i386/freebsd.h index 01cc1db..3db1b3e 100644 --- a/contrib/gcc/config/i386/freebsd.h +++ b/contrib/gcc/config/i386/freebsd.h @@ -248,13 +248,6 @@ Boston, MA 02111-1307, USA. */ #undef ASM_HACK_SYMBOLREF_CODE /* BDE will need to fix this. */ -/* This is how to output an element of a case-vector that is relative. - This is only used for PIC code. See comments by the `casesi' insn in - i386.md for an explanation of the expression this outputs. */ -#undef ASM_OUTPUT_ADDR_DIFF_ELT -#define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL) \ - fprintf ((FILE), "\t.long _GLOBAL_OFFSET_TABLE_+[.-%s%d]\n", LPREFIX, (VALUE)) - #undef ASM_OUTPUT_ALIGN #define ASM_OUTPUT_ALIGN(FILE, LOG) \ if ((LOG)!=0) { \ |