2000-12-22 H.J. Lu <hjl@gnu.org>
authorH.J. Lu <hjl.tools@gmail.com>
Fri, 22 Dec 2000 20:53:35 +0000 (20:53 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Fri, 22 Dec 2000 20:53:35 +0000 (20:53 +0000)
* config/tc-i386.c (reloc): Update the macro for non-bfd
assembler.
(BFD_RELOC_X86_64_GOTPCREL): Set to 0 for non-bfd assembler.

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

index eac4815d057c83c30c767b178ede40dc48c3b5db..b14a5a06931cd1a57288ffe0084ac171fcc48f3d 100644 (file)
@@ -1,3 +1,9 @@
+2000-12-22  H.J. Lu  <hjl@gnu.org>
+
+       * config/tc-i386.c (reloc): Update the macro for non-bfd
+       assembler.
+       (BFD_RELOC_X86_64_GOTPCREL): Set to 0 for non-bfd assembler.
+
 2000-12-22  H.J. Lu  <hjl@gnu.org>
 
        * dwarf2dbg.c (dwarf2_finish): Remove #if BFD_ASSEMBLER.
index 0485c6784e48b43e8a534bf76b0340a955520834..6cea8771483b6dff8124d4e8f90ed49253ec8d3f 100644 (file)
@@ -1141,16 +1141,17 @@ tc_i386_fix_adjustable (fixP)
   return 1;
 }
 #else
-#define reloc(SIZE,PCREL,OTHER)        0
-#define BFD_RELOC_16           0
-#define BFD_RELOC_32           0
-#define BFD_RELOC_16_PCREL     0
-#define BFD_RELOC_32_PCREL     0
-#define BFD_RELOC_386_PLT32    0
-#define BFD_RELOC_386_GOT32    0
-#define BFD_RELOC_386_GOTOFF   0
-#define BFD_RELOC_X86_64_PLT32 0
-#define BFD_RELOC_X86_64_GOT32 0
+#define reloc(SIZE,PCREL,SIGN,OTHER)   0
+#define BFD_RELOC_16                   0
+#define BFD_RELOC_32                   0
+#define BFD_RELOC_16_PCREL             0
+#define BFD_RELOC_32_PCREL             0
+#define BFD_RELOC_386_PLT32            0
+#define BFD_RELOC_386_GOT32            0
+#define BFD_RELOC_386_GOTOFF           0
+#define BFD_RELOC_X86_64_PLT32         0
+#define BFD_RELOC_X86_64_GOT32         0
+#define BFD_RELOC_X86_64_GOTPCREL      0
 #endif
 
 static int intel_float_operand PARAMS ((char *mnemonic));