* config/tc-mn10300.c (md_apply_fix3): Accept PC-relative relocs.
authorAlexandre Oliva <aoliva@redhat.com>
Wed, 9 May 2001 13:32:01 +0000 (13:32 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Wed, 9 May 2001 13:32:01 +0000 (13:32 +0000)
gas/ChangeLog
gas/config/tc-mn10300.c

index a441aa8158dd07b3795e147950171c2a35519d55..0116a254948b1d92520256ab243c4280139410c5 100644 (file)
@@ -1,3 +1,7 @@
+2001-05-09  Alexandre Oliva  <aoliva@redhat.com>
+
+       * config/tc-mn10300.c (md_apply_fix3): Accept PC-relative relocs.
+
 2001-05-08  Andreas Schwab  <schwab@suse.de>
 
        * config/tc-m68k.c: Instead of replacing -1 by 64 in assignment to
index 59e13c7063149ca15989cf8e066850c9e51ac9c2..5e2ba77b92b6f4828d7b03cdd2d29710d6032136 100644 (file)
@@ -1901,14 +1901,17 @@ md_apply_fix3 (fixp, valuep, seg)
   switch (fixp->fx_r_type)
     {
     case BFD_RELOC_8:
+    case BFD_RELOC_8_PCREL:
       size = 1;
       break;
 
     case BFD_RELOC_16:
+    case BFD_RELOC_16_PCREL:
       size = 2;
       break;
 
     case BFD_RELOC_32:
+    case BFD_RELOC_32_PCREL:
       size = 4;
       break;
 
This page took 0.034337 seconds and 4 git commands to generate.