2009-04-01 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
authorRamana Radhakrishnan <ramana.r@gmail.com>
Wed, 1 Apr 2009 16:49:32 +0000 (16:49 +0000)
committerRamana Radhakrishnan <ramana.r@gmail.com>
Wed, 1 Apr 2009 16:49:32 +0000 (16:49 +0000)
* config/tc-arm.c (arm_validate_fix): Define only for OBJ_COFF.
(find_real_start): Likewise.
* config/tc-arm.h (TC_VALIDATE_FIX): Likewise

gas/ChangeLog
gas/config/tc-arm.c
gas/config/tc-arm.h

index 27e3fa6bbaad436513306ef5667ab5cc775fb521..932ecd025216b091bfc0cf5d7dad2f0037b1a5e8 100644 (file)
@@ -1,3 +1,9 @@
+2009-04-01  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
+
+       * config/tc-arm.c (arm_validate_fix): Define only for OBJ_COFF.
+       (find_real_start): Likewise.
+       * config/tc-arm.h (TC_VALIDATE_FIX): Likewise
+
 2009-04-01  Nathan Sidwell  <nathan@codesourcery.com>
 
        * config/tc-arm.c (do_nop): Generate v6k nops whenever possible.
index 78215abccc14503b795187a8685c04e2c72d0190..57a8ef00b244a994960cfe951d5369f255dcd46c 100644 (file)
@@ -2417,6 +2417,7 @@ mapping_state (enum mstate state)
 
 /* Find the real, Thumb encoded start of a Thumb function.  */
 
+#ifdef OBJ_COFF
 static symbolS *
 find_real_start (symbolS * symbolP)
 {
@@ -2449,6 +2450,7 @@ find_real_start (symbolS * symbolP)
 
   return new_target;
 }
+#endif
 
 static void
 opcode_select (int width)
@@ -9082,6 +9084,7 @@ do_t_branch23 (void)
   inst.reloc.type   = BFD_RELOC_THUMB_PCREL_BRANCH23;
   inst.reloc.pc_rel = 1;
 
+#if defined(OBJ_COFF)
   /* If the destination of the branch is a defined symbol which does not have
      the THUMB_FUNC attribute, then we must be calling a function which has
      the (interfacearm) attribute.  We look for the Thumb entry point to that
@@ -9092,6 +9095,7 @@ do_t_branch23 (void)
       && ! THUMB_IS_FUNC (inst.reloc.exp.X_add_symbol))
     inst.reloc.exp.X_add_symbol =
       find_real_start (inst.reloc.exp.X_add_symbol);
+#endif
 }
 
 static void
@@ -19933,7 +19937,7 @@ cons_fix_new_arm (fragS *       frag,
   fix_new_exp (frag, where, (int) size, exp, pcrel, type);
 }
 
-#if defined OBJ_COFF || defined OBJ_ELF
+#if defined (OBJ_COFF)
 void
 arm_validate_fix (fixS * fixP)
 {
index 15e02c7371df86f76606bbeac2e201320ffb02c0..c6f6fd8c7f04f23da103f95592f9204b3987ec00 100644 (file)
@@ -249,8 +249,10 @@ struct arm_segment_info_type
 # define tc_fix_adjustable(FIX)                arm_fix_adjustable (FIX)
 /* Values passed to md_apply_fix don't include the symbol value.  */
 # define MD_APPLY_SYM_VALUE(FIX)               0
-# define TC_VALIDATE_FIX(FIX, SEGTYPE, LABEL)  arm_validate_fix (FIX)
+#endif
 
+#ifdef OBJ_COFF
+# define TC_VALIDATE_FIX(FIX, SEGTYPE, LABEL)  arm_validate_fix (FIX)
 #endif
 
 #define MD_PCREL_FROM_SECTION(F,S) md_pcrel_from_section(F,S)
This page took 0.057102 seconds and 4 git commands to generate.