]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gas/
authorJan Beulich <jbeulich@novell.com>
Wed, 25 May 2005 07:13:19 +0000 (07:13 +0000)
committerJan Beulich <jbeulich@novell.com>
Wed, 25 May 2005 07:13:19 +0000 (07:13 +0000)
2005-05-25  Jan Beulich  <jbeulich@novell.com>

* config/tc-ia64.c (ia64_gen_real_reloc_type): Also handle
BFD_RELOC_UNUSED when determining the width of the reloc.

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

index e014f826f27f88725e93e007e49d26db728a9048..4158f79d323f3fbc1a7f6177e8e29c224011ef9a 100644 (file)
@@ -1,3 +1,8 @@
+2005-05-25  Jan Beulich  <jbeulich@novell.com>
+
+       * config/tc-ia64.c (ia64_gen_real_reloc_type): Also handle
+       BFD_RELOC_UNUSED when determining the width of the reloc.
+
 2005-05-25  Jan Beulich  <jbeulich@novell.com>
 
        * config/tc-ia64.c (dot_endp): Clear out all three pointers in unwind
index 4cb7b9c7507994056b055c2ed0cf25928e0f7e5c..42c9c0bcf9f1796b5eaa4015cf8878eeda6e04a7 100644 (file)
@@ -11248,6 +11248,7 @@ ia64_gen_real_reloc_type (sym, r_type)
        case BFD_RELOC_IA64_DIR32LSB: width = 32; suffix = "LSB"; break;
        case BFD_RELOC_IA64_DIR64MSB: width = 64; suffix = "MSB"; break;
        case BFD_RELOC_IA64_DIR64LSB: width = 64; suffix = "LSB"; break;
+       case BFD_RELOC_UNUSED:        width = 13; break;
        case BFD_RELOC_IA64_IMM14:    width = 14; break;
        case BFD_RELOC_IA64_IMM22:    width = 22; break;
        case BFD_RELOC_IA64_IMM64:    width = 64; suffix = "I"; break;