diff options
author | Ian Lance Taylor <iant@google.com> | 2007-09-21 05:31:19 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2007-09-21 05:31:19 +0000 |
commit | c51e6221b8abc026554349b0e8aa59477753b57b (patch) | |
tree | 69da000e6f8a21292026aaa1e7a6b040a5298c45 /gold/layout.cc | |
parent | ec51df9f1064740196d016ed12c2624049d80ba9 (diff) | |
download | gdb-c51e6221b8abc026554349b0e8aa59477753b57b.zip gdb-c51e6221b8abc026554349b0e8aa59477753b57b.tar.gz gdb-c51e6221b8abc026554349b0e8aa59477753b57b.tar.bz2 |
Use nops when doing alignment padding between code sections.
Diffstat (limited to 'gold/layout.cc')
-rw-r--r-- | gold/layout.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gold/layout.cc b/gold/layout.cc index 3e8a223..35de9e4 100644 --- a/gold/layout.cc +++ b/gold/layout.cc @@ -28,7 +28,8 @@ Layout_task_runner::run(Workqueue* workqueue) // Now we know the final size of the output file and we know where // each piece of information goes. - Output_file* of = new Output_file(this->options_); + Output_file* of = new Output_file(this->options_, + this->input_objects_->target()); of->open(file_size); // Queue up the final set of tasks. |