This patch reworks the fix to avoid a compile time warning so that it will work
authorNick Clifton <nickc@redhat.com>
Mon, 28 Apr 2014 08:34:02 +0000 (09:34 +0100)
committerNick Clifton <nickc@redhat.com>
Mon, 28 Apr 2014 08:34:02 +0000 (09:34 +0100)
with later versions of gcc.

PR ld/16821
* peXXigen.c (_bfd_XXi_swap_sym_out): Rework fix to avoid compile
time warning.

bfd/ChangeLog
bfd/peXXigen.c

index eb0c7042463dd921eb4a3895caa32d9081cdd1a2..2a1642d1576b521fa0ee6276a659b8a90e7c56ab 100644 (file)
@@ -1,3 +1,9 @@
+2014-04-28  Nick Clifton  <nickc@redhat.com>
+
+       PR ld/16821
+       * peXXigen.c (_bfd_XXi_swap_sym_out): Rework fix to avoid compile
+       time warning.
+
 2014-04-26  Alan Modra  <amodra@gmail.com>
 
        * po/SRC-POTFILES.in: Regenerate.
index dc45daf573282212352ce339a55e01b2787f1c76..8f6f0eb56a16bb66a66cf838be4abacf739bcea8 100644 (file)
@@ -236,15 +236,12 @@ _bfd_XXi_swap_sym_out (bfd * abfd, void * inp, void * extp)
      reduce the absolute value to < 1^32, and then transforming the
      symbol into a section relative symbol.  This of course is a hack.  */
   if (sizeof (in->n_value) > 4
-      /* GCC 4.6.x erroneously complains about the next test always being
-        false when compiled on a 32-bit host.  (The sizeof test above
-        should have made the warning unnecessary).  Hence we have to
-        predicate the test.  It should not matter if the test is omitted
-        since the worst that can happen is that some absolute symbols
-        are needlessly converted to equivalent section relative symbols.  */
-#if defined BFD64 || ! defined __GNUC__ || __GNUC__ > 4 || __GNUC_MINOR__ > 6
-      && in->n_value > ((1ULL << 32) - 1)
-#endif
+      /* The strange computation of the shift amount is here in order to
+        avoid a compile time warning about the comparison always being
+        false.  It does not matter if this test fails to work as expected
+        as the worst that can happen is that some absolute symbols are
+        needlessly converted into section relative symbols.  */
+      && in->n_value > ((1ULL << (sizeof (in->n_value) > 4 ? 32 : 31)) - 1)
       && in->n_scnum == -1)
     {
       asection * sec;
This page took 0.02669 seconds and 4 git commands to generate.