Remove unused field from ld_config_type structure.
authorNick Clifton <nickc@redhat.com>
Thu, 25 Feb 2016 10:33:29 +0000 (10:33 +0000)
committerNick Clifton <nickc@redhat.com>
Thu, 25 Feb 2016 10:33:29 +0000 (10:33 +0000)
* ld.h (struct ld_config_type): Remove specified_data_size field.

ld/ChangeLog
ld/ld.h

index 73d3f9d40986f45e1dc315b6fd0c992a4fcdbefa..103719804feb2f44a2a9203bead452f5a9aac483 100644 (file)
@@ -1,3 +1,7 @@
+2016-02-25  Nick Clifton  <nickc@redhat.com>
+
+       * ld.h (struct ld_config_type): Remove specified_data_size field.
+
 2016-02-24  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR ld/19698
diff --git a/ld/ld.h b/ld/ld.h
index ab09032e455f8b64b1d8fd7cbb860d78cfd45e58..85a48ad58d940d2fb0d87060daa8bf117fe47e20 100644 (file)
--- a/ld/ld.h
+++ b/ld/ld.h
@@ -72,8 +72,9 @@
    discarded.  */
 #define DISCARD_SECTION_NAME "/DISCARD/"
 
-/* A file name list */
-typedef struct name_list {
+/* A file name list.  */
+typedef struct name_list
+{
   const char *name;
   struct name_list *next;
 }
@@ -83,21 +84,24 @@ typedef enum {sort_none, sort_ascending, sort_descending} sort_order;
 
 /* A wildcard specification.  */
 
-typedef enum {
+typedef enum
+{
   none, by_name, by_alignment, by_name_alignment, by_alignment_name,
   by_none, by_init_priority
 } sort_type;
 
 extern sort_type sort_section;
 
-struct wildcard_spec {
+struct wildcard_spec
+{
   const char *name;
   struct name_list *exclude_name_list;
   sort_type sorted;
   struct flag_info *section_flag_list;
 };
 
-struct wildcard_list {
+struct wildcard_list
+{
   struct wildcard_list *next;
   struct wildcard_spec spec;
 };
@@ -110,20 +114,21 @@ struct wildcard_list {
 enum endian_enum { ENDIAN_UNSET = 0, ENDIAN_BIG, ENDIAN_LITTLE };
 
 enum symbolic_enum
-  {
-    symbolic_unset = 0,
-    symbolic,
-    symbolic_functions,
-  };
+{
+  symbolic_unset = 0,
+  symbolic,
+  symbolic_functions,
+};
 
 enum dynamic_list_enum
-  {
-    dynamic_list_unset = 0,
-    dynamic_list_data,
-    dynamic_list
-  };
+{
+  dynamic_list_unset = 0,
+  dynamic_list_data,
+  dynamic_list
+};
 
-typedef struct {
+typedef struct
+{
   /* 1 => assign space to common symbols even if `relocatable_output'.  */
   bfd_boolean force_common_definition;
 
@@ -209,7 +214,8 @@ typedef int token_code_type;
 
 /* Different ways we can handle orphan sections.  */
 
-enum orphan_handling_enum {
+enum orphan_handling_enum
+{
   /* The classic strategy, find a suitable section to place the orphan
      into.  */
   orphan_handling_place = 0,
@@ -226,7 +232,8 @@ enum orphan_handling_enum {
   orphan_handling_error,
 };
 
-typedef struct {
+typedef struct
+{
   bfd_boolean magic_demand_paged;
   bfd_boolean make_executable;
 
@@ -292,8 +299,6 @@ typedef struct {
   unsigned int split_by_reloc;
   bfd_size_type split_by_file;
 
-  bfd_size_type specified_data_size;
-
   /* The size of the hash table to use.  */
   unsigned long hash_table_size;
 
This page took 0.031282 seconds and 4 git commands to generate.