* config/tc-ppc.h (TC_FORCE_RELOCATION): Only define for ELF and XCOFF.

This commit is contained in:
Alan Modra 2003-11-04 23:35:54 +00:00
parent 2c07ab8a9e
commit 5f5c1f759d
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-11-05 Alan Modra <amodra@bigpond.net.au>
* config/tc-ppc.h (TC_FORCE_RELOCATION): Only define for ELF and XCOFF.
2003-10-31 Christian Groessler <chris@groessler.org>
* config/tc-i860.c (md_pcrel_from): Fix typo in comment.

View File

@ -1,5 +1,5 @@
/* tc-ppc.h -- Header file for tc-ppc.c.
Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
Free Software Foundation, Inc.
Written by Ian Lance Taylor, Cygnus Support.
@ -237,8 +237,10 @@ extern void ppc_frob_file_before_adjust PARAMS ((void));
#endif /* OBJ_ELF */
#if defined (OBJ_ELF) || defined (OBJ_XCOFF)
#define TC_FORCE_RELOCATION(FIX) ppc_force_relocation (FIX)
extern int ppc_force_relocation PARAMS ((struct fix *));
#endif
/* call md_pcrel_from_section, not md_pcrel_from */
#define MD_PCREL_FROM_SECTION(FIX, SEC) md_pcrel_from_section(FIX, SEC)