summaryrefslogtreecommitdiff
path: root/gold
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2008-09-16 04:31:25 +0000
committerAlexandre Oliva <aoliva@redhat.com>2008-09-16 04:31:25 +0000
commit5eb75418c544eebf6c11f8319c9c272902786dfb (patch)
tree0a810b37311e32e61057b46df8c0881b6490ed98 /gold
parent81d07304a46d1675df33ebe6d9d7a1fc3e80832e (diff)
downloadbinutils-redhat-5eb75418c544eebf6c11f8319c9c272902786dfb.tar.gz
* i386.cc (Target_i386::define_tls_base_symbol): Update comments.
* x86_64.cc (Target_x86_64::define_tls_base_symbol): Likewise.
Diffstat (limited to 'gold')
-rw-r--r--gold/ChangeLog5
-rw-r--r--gold/i386.cc4
-rw-r--r--gold/x86_64.cc4
3 files changed, 9 insertions, 4 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog
index 7235cd9e59..0f67551bee 100644
--- a/gold/ChangeLog
+++ b/gold/ChangeLog
@@ -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
diff --git a/gold/i386.cc b/gold/i386.cc
index 8889a6802b..e2fbb25878 100644
--- a/gold/i386.cc
+++ b/gold/i386.cc
@@ -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)
diff --git a/gold/x86_64.cc b/gold/x86_64.cc
index dda329759f..46c4a2227c 100644
--- a/gold/x86_64.cc
+++ b/gold/x86_64.cc
@@ -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)