* config/tc-i386.h (TC_FIX_ADJUSTABLE): Do *NOT* define if target
authorAlexandre Oliva <aoliva@redhat.com>
Wed, 23 Aug 2000 11:19:20 +0000 (11:19 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Wed, 23 Aug 2000 11:19:20 +0000 (11:19 +0000)
environment is pe.

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

index 60445348279ca7b71ec2125036d488e51f112f76..e98d769a21ec0515fe5628b2cc01802b65d2ea9f 100644 (file)
@@ -1,3 +1,8 @@
+2000-08-23  Alexandre Oliva  <aoliva@redhat.com>
+
+       * config/tc-i386.h (TC_FIX_ADJUSTABLE): Do *NOT* define if target
+       environment is pe.
+
 2000-08-22  H.J. Lu  <hjl@gnu.org>
 
        * config.in (STRICTCOFF): New for strict COFF.
index 9c4609b3bec17f4c8008bc3fffcc937227fa5ac6..03084319da245880c228f2c03d9bf800fc681194 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_ELF) || 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)
This page took 0.029224 seconds and 4 git commands to generate.