PR 5946
authorAlan Modra <amodra@gmail.com>
Sun, 16 Mar 2008 23:16:03 +0000 (23:16 +0000)
committerAlan Modra <amodra@gmail.com>
Sun, 16 Mar 2008 23:16:03 +0000 (23:16 +0000)
* config/tc-hppa.c (is_same_frag): Delete.

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

index 148ffb152798d9753ebfc41c3ff649baef97b06a..7fb71a2e7169a712f041ac9fd7a92e93081e3412 100644 (file)
@@ -1,3 +1,8 @@
+2008-03-17  Adrian Bunk  <bunk@stusta.de>
+
+       PR 5946
+       * config/tc-hppa.c (is_same_frag): Delete.
+
 2008-03-14  Sterling Augustine  <sterling@tensilica.com>
        
        * config/tc-xtensa.h (xtensa_relax_statesE): Update comment for
index 9e9a669d57c971ea2a5190ff2b2246a707fa685a..d31d527a68c59eaf75b562d4f98ce9e7c7f2aafd 100644 (file)
@@ -5898,24 +5898,6 @@ pa_call (int unused ATTRIBUTE_UNUSED)
   demand_empty_rest_of_line ();
 }
 
-/* Return TRUE if FRAG1 and FRAG2 are the same.  */
-
-static bfd_boolean
-is_same_frag (fragS *frag1, fragS *frag2)
-{
-
-  if (frag1 == NULL)
-    return FALSE;
-  else if (frag2 == NULL)
-    return FALSE;
-  else if (frag1 == frag2)
-    return TRUE;
-  else if (frag2->fr_type == rs_fill && frag2->fr_fix == 0)
-    return (is_same_frag (frag1, frag2->fr_next));
-  else
-    return FALSE;
-}
-
 #ifdef OBJ_ELF
 /* Build an entry in the UNWIND subspace from the given function
    attributes in CALL_INFO.  This is not needed for SOM as using
This page took 0.033667 seconds and 4 git commands to generate.