diff options
author | Ian Lance Taylor <iant@google.com> | 2007-10-16 22:38:36 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2007-10-16 22:38:36 +0000 |
commit | 0c5e9c22aa5e70354471a6314c9c624c22719266 (patch) | |
tree | b94bce685c6afa90a8a7fe7edd88fe8e558c1219 /gold/target.h | |
parent | 928a4139f6eedb83ca83a58d42c2ba54ab8dd536 (diff) | |
download | gdb-0c5e9c22aa5e70354471a6314c9c624c22719266.zip gdb-0c5e9c22aa5e70354471a6314c9c624c22719266.tar.gz gdb-0c5e9c22aa5e70354471a6314c9c624c22719266.tar.bz2 |
From Craig Silverstein: implement -Ttext.
Diffstat (limited to 'gold/target.h')
-rw-r--r-- | gold/target.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gold/target.h b/gold/target.h index 31037ef..3908174 100644 --- a/gold/target.h +++ b/gold/target.h @@ -95,8 +95,8 @@ class Target // Return the default address to use for the text segment. uint64_t - text_segment_address() const - { return this->pti_->text_segment_address; } + default_text_segment_address() const + { return this->pti_->default_text_segment_address; } // Return the ABI specified page size. uint64_t @@ -149,7 +149,7 @@ class Target // The default dynamic linker name. const char* dynamic_linker; // The default text segment address. - uint64_t text_segment_address; + uint64_t default_text_segment_address; // The ABI specified page size. uint64_t abi_pagesize; // The common page size used by actual implementations. |