ld: Mention --enable-textrel-check=yes is default for Linux/x86 targets
[deliverable/binutils-gdb.git] / ld / ldctor.h
index 4a845313b32e32dfb8a0c61ea7fe8f548be757d3..2ff3e9c1869c07fa7695bf2d3aba897427ab9aa1 100644 (file)
@@ -1,5 +1,5 @@
 /* ldctor.h - linker constructor support
-   Copyright (C) 1991-2015 Free Software Foundation, Inc.
+   Copyright (C) 1991-2020 Free Software Foundation, Inc.
 
    This file is part of the GNU Binutils.
 
@@ -40,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.02465 seconds and 4 git commands to generate.