ld-x86-64: Pass -z notext to linker for tests with DT_TEXTREL
[deliverable/binutils-gdb.git] / ld / ldctor.h
index 7cd0c845aed19334676a48f63d093f8d2fb00cce..2ff3e9c1869c07fa7695bf2d3aba897427ab9aa1 100644 (file)
@@ -1,5 +1,5 @@
 /* ldctor.h - linker constructor support
-   Copyright (C) 1991-2014 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.032879 seconds and 4 git commands to generate.