2010-04-13 Doug Kwan <dougkwan@google.com>
authorDoug Kwan <dougkwan@google.com>
Tue, 13 Apr 2010 20:37:55 +0000 (20:37 +0000)
committerDoug Kwan <dougkwan@google.com>
Tue, 13 Apr 2010 20:37:55 +0000 (20:37 +0000)
* arm.cc (Arm_input_section::set_final_data_size): Compute
accurate final data size instead of using current data size.

gold/ChangeLog
gold/arm.cc

index 123cbb95bfa20b68521bb829d89fbce8ba46ecdd..0fd5fde05d0a411528d50a498eddf940ffa89c00 100644 (file)
@@ -1,3 +1,8 @@
+2010-04-13  Doug Kwan  <dougkwan@google.com>
+
+       * arm.cc (Arm_input_section::set_final_data_size): Compute
+       accurate final data size instead of using current data size.
+
 2010-04-09  Doug Kwan  <dougkwan@google.com>
 
        * layout.cc (Layout::choose_output_section): Handle script section
index c9e730b5359cd06a6b3ffd960a6be2562323d6d4..036160fc771a3cc6bcd03addad880fc5497dad17 100644 (file)
@@ -4935,21 +4935,17 @@ template<bool big_endian>
 void
 Arm_input_section<big_endian>::set_final_data_size()
 {
-  // If this owns a stub table, finalize its data size as well.
+  off_t off = convert_types<off_t, uint64_t>(this->original_size_);
+
   if (this->is_stub_table_owner())
     {
-      uint64_t address = this->address();
-
       // The stub table comes after the original section contents.
-      address += this->original_size_;
-      address = align_address(address, this->stub_table_->addralign());
-      off_t offset = this->offset() + (address - this->address());
-      this->stub_table_->set_address_and_file_offset(address, offset);
-      address += this->stub_table_->data_size();
-      gold_assert(address == this->address() + this->current_data_size());
+      off = align_address(off, this->stub_table_->addralign());
+      this->stub_table_->set_address_and_file_offset(this->address() + off,
+                                                    this->offset() + off);
+      off += this->stub_table_->data_size();
     }
-
-  this->set_data_size(this->current_data_size());
+  this->set_data_size(off);
 }
 
 // Reset address and file offset.
This page took 0.034785 seconds and 4 git commands to generate.