From 1bedcac52a2f05841dcdefcd1248ae3393274471 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Fri, 4 Jan 2008 05:04:56 +0000 Subject: [PATCH] Don't create the postprocessing buffer if it already exists. --- gold/output.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gold/output.cc b/gold/output.cc index 8a9e9b3..0e28629 100644 --- a/gold/output.cc +++ b/gold/output.cc @@ -1845,7 +1845,9 @@ void Output_section::create_postprocessing_buffer() { gold_assert(this->requires_postprocessing()); - gold_assert(this->postprocessing_buffer_ == NULL); + + if (this->postprocessing_buffer_ != NULL) + return; if (!this->input_sections_.empty()) { -- 2.7.4