Silence ARI warning about floatformat_to_double
[deliverable/binutils-gdb.git] / ld / ldctor.h
index 6e70a091ce6cc9a25eb08bfa680100a02e4dd389..b48a0dbb635d2ad40d7524cc962f0053b3c61a87 100644 (file)
@@ -1,6 +1,5 @@
 /* ldctor.h - linker constructor support
-   Copyright 1991, 1992, 1993, 1994, 1995, 1998, 2000, 2002, 2003,
-   2007  Free Software Foundation, Inc.
+   Copyright (C) 1991-2019 Free Software Foundation, Inc.
 
    This file is part of the GNU Binutils.
 
@@ -41,7 +40,10 @@ struct set_info {
 };
 
 struct set_element {
-  struct set_element *next;            /* Next element.  */
+  union {
+    struct set_element *next;          /* Next element.  */
+    long idx;
+  } u;
   const char *name;                    /* Name in set (may be NULL).  */
   asection *section;                   /* Section of value in set.  */
   bfd_vma value;                       /* Value in set.  */
This page took 0.023158 seconds and 4 git commands to generate.