mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 01:42:21 +08:00
Don't create the postprocessing buffer if it already exists.
This commit is contained in:
@ -1845,7 +1845,9 @@ void
|
|||||||
Output_section::create_postprocessing_buffer()
|
Output_section::create_postprocessing_buffer()
|
||||||
{
|
{
|
||||||
gold_assert(this->requires_postprocessing());
|
gold_assert(this->requires_postprocessing());
|
||||||
gold_assert(this->postprocessing_buffer_ == NULL);
|
|
||||||
|
if (this->postprocessing_buffer_ != NULL)
|
||||||
|
return;
|
||||||
|
|
||||||
if (!this->input_sections_.empty())
|
if (!this->input_sections_.empty())
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user