* config/tc-i386.h <OBJ_MAYBE_ELF, OBJ_MAYBE_COFF>
authorAlexandre Oliva <aoliva@redhat.com>
Wed, 23 Aug 2000 21:12:48 +0000 (21:12 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Wed, 23 Aug 2000 21:12:48 +0000 (21:12 +0000)
(TC_FIX_ADJUSTABLE): Define.

gas/ChangeLog
gas/config/tc-i386.h

index 89c4878..277bf88 100644 (file)
@@ -1,3 +1,8 @@
+2000-08-23  Alexandre Oliva  <aoliva@redhat.com>
+
+       * config/tc-i386.h <OBJ_MAYBE_ELF, OBJ_MAYBE_COFF>
+       (TC_FIX_ADJUSTABLE): Define.
+
 2000-08-23  Jim Wilson  <wilson@cygnus.com>
 
        * config/tc-ia64.c (output_unw_records): Set U & E flags only if
index 0308431..82fb606 100644 (file)
@@ -41,7 +41,7 @@ struct fix;
 #define tc_fix_adjustable(X)  tc_i386_fix_adjustable(X)
 extern int tc_i386_fix_adjustable PARAMS ((struct fix *));
 
-#if (defined (OBJ_ELF) || defined (OBJ_COFF)) && !defined (TE_PE)
+#if (defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF) || defined (OBJ_MAYBE_COFF) || defined (OBJ_COFF)) && !defined (TE_PE)
 /* This arranges for gas/write.c to not apply a relocation if
    tc_fix_adjustable() says it is not adjustable.  */
 #define TC_FIX_ADJUSTABLE(fixP) tc_fix_adjustable (fixP)