* 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 7235cd9e5931f5d16bb6694d5bb403ed3ff2442d..0f67551bee6a1cfa0c34e0f27fb59bb2a4d9e928 100644 (file)
@@ -1,3 +1,8 @@
+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.
index 8889a6802b701733f8050473e6cbeae999109208..e2fbb258786150563594047df4504942d9ed3bc4 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 dda329759f643c83359b96bfc5178473d932b826..46c4a2227c7a9728eb86301aa9613b78f3dc59af 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)