Update copyright years
[deliverable/binutils-gdb.git] / gold / tilegx.cc
index ab976405ca0c7a268d24dfa938d552ad07869075..c1945872d601112e6849b618060fb54ff025ab0f 100644 (file)
@@ -1,6 +1,6 @@
 // tilegx.cc -- tilegx target support for gold.
 
-// Copyright 2012, 2013 Free Software Foundation, Inc.
+// Copyright (C) 2012-2014 Free Software Foundation, Inc.
 // Written by Jiong Wang (jiwang@tilera.com)
 
 // This file is part of gold.
@@ -239,7 +239,7 @@ class Target_tilegx : public Sized_target<size, big_endian>
       got_(NULL), plt_(NULL), got_plt_(NULL), got_irelative_(NULL),
       global_offset_table_(NULL), tilegx_dynamic_(NULL), rela_dyn_(NULL),
       rela_irelative_(NULL), copy_relocs_(elfcpp::R_TILEGX_COPY),
-      dynbss_(NULL), got_mod_index_offset_(-1U),
+      got_mod_index_offset_(-1U),
       tls_get_addr_sym_defined_(false)
   { }
 
@@ -650,8 +650,6 @@ class Target_tilegx : public Sized_target<size, big_endian>
   Reloc_section* rela_irelative_;
   // Relocs saved to avoid a COPY reloc.
   Copy_relocs<elfcpp::SHT_RELA, size, big_endian> copy_relocs_;
-  // Space for variables copied with a COPY reloc.
-  Output_data_space* dynbss_;
   // Offset of the GOT entry for the TLS module index.
   unsigned int got_mod_index_offset_;
   // True if the _tls_get_addr symbol has been defined.
@@ -681,7 +679,8 @@ const Target::Target_info Target_tilegx<64, false>::tilegx_info =
   0,                    // small_common_section_flags
   0,                    // large_common_section_flags
   NULL,                 // attributes_section
-  NULL                  // attributes_vendor
+  NULL,                 // attributes_vendor
+  "_start"             // entry_symbol_name
 };
 
 template<>
@@ -707,7 +706,8 @@ const Target::Target_info Target_tilegx<32, false>::tilegx_info =
   0,                    // small_common_section_flags
   0,                    // large_common_section_flags
   NULL,                 // attributes_section
-  NULL                  // attributes_vendor
+  NULL,                 // attributes_vendor
+  "_start"             // entry_symbol_name
 };
 
 template<>
@@ -733,7 +733,8 @@ const Target::Target_info Target_tilegx<64, true>::tilegx_info =
   0,                    // small_common_section_flags
   0,                    // large_common_section_flags
   NULL,                 // attributes_section
-  NULL                  // attributes_vendor
+  NULL,                 // attributes_vendor
+  "_start"             // entry_symbol_name
 };
 
 template<>
@@ -759,7 +760,8 @@ const Target::Target_info Target_tilegx<32, true>::tilegx_info =
   0,                    // small_common_section_flags
   0,                    // large_common_section_flags
   NULL,                 // attributes_section
-  NULL                  // attributes_vendor
+  NULL,                  // attributes_vendor
+  "_start"             // entry_symbol_name
 };
 
 // tilegx relocation handlers
This page took 0.0257 seconds and 4 git commands to generate.