aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gas/ChangeLog4
-rw-r--r--gas/config/tc-ppc.h4
2 files changed, 7 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index e7584d5..8c9f356 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -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.
diff --git a/gas/config/tc-ppc.h b/gas/config/tc-ppc.h
index a1c74b2..0844f84 100644
--- a/gas/config/tc-ppc.h
+++ b/gas/config/tc-ppc.h
@@ -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)