* i386.cc (Target_i386::define_tls_base_symbol): Update comments.
authorAlexandre Oliva <aoliva@redhat.com>
Tue, 16 Sep 2008 04:31:25 +0000 (04:31 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Tue, 16 Sep 2008 04:31:25 +0000 (04:31 +0000)
* x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.

gold/ChangeLog
gold/i386.cc
gold/x86_64.cc

index 7235cd9..0f67551 100644 (file)
@@ -1,5 +1,10 @@
 2008-09-16  Alexandre Oliva  <aoliva@redhat.com>
 
+       * i386.cc (Target_i386::define_tls_base_symbol): Update comments.
+       * x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
+
+2008-09-16  Alexandre Oliva  <aoliva@redhat.com>
+
        * options.h (General_options::output_is_executable): New.
        (General_options::output_is_pie): New.
        * i386.cc (Target_i386::define_tls_base_symbol): Use SEGMENT_START
index 8889a68..e2fbb25 100644 (file)
@@ -323,7 +323,7 @@ class Target_i386 : public Sized_target<32, false>
   void
   make_plt_entry(Symbol_table*, Layout*, Symbol*);
 
-  // Define the _TLS_MODULE_BASE_ symbol at the end of the TLS segment.
+  // Define the _TLS_MODULE_BASE_ symbol in the TLS segment.
   void
   define_tls_base_symbol(Symbol_table*, Layout*);
 
@@ -736,7 +736,7 @@ Target_i386::make_plt_entry(Symbol_table* symtab, Layout* layout, Symbol* gsym)
   this->plt_->add_entry(gsym);
 }
 
-// Define the _TLS_MODULE_BASE_ symbol at the end of the TLS segment.
+// Define the _TLS_MODULE_BASE_ symbol in the TLS segment.
 
 void
 Target_i386::define_tls_base_symbol(Symbol_table* symtab, Layout* layout)
index dda3297..46c4a22 100644 (file)
@@ -330,7 +330,7 @@ class Target_x86_64 : public Sized_target<64, false>
   void
   make_plt_entry(Symbol_table*, Layout*, Symbol*);
 
-  // Define the _TLS_MODULE_BASE_ symbol at the end of the TLS segment.
+  // Define the _TLS_MODULE_BASE_ symbol in the TLS segment.
   void
   define_tls_base_symbol(Symbol_table*, Layout*);
 
@@ -796,7 +796,7 @@ Target_x86_64::make_plt_entry(Symbol_table* symtab, Layout* layout,
   this->plt_->add_entry(gsym);
 }
 
-// Define the _TLS_MODULE_BASE_ symbol at the end of the TLS segment.
+// Define the _TLS_MODULE_BASE_ symbol in the TLS segment.
 
 void
 Target_x86_64::define_tls_base_symbol(Symbol_table* symtab, Layout* layout)