Bug 23933 - gold_assert(len >= this->do_minimum_hole_size()) fails
Summary: gold_assert(len >= this->do_minimum_hole_size()) fails
Status: RESOLVED INVALID
Alias: None
Product: binutils
Classification: Unclassified
Component: gold (show other bugs)
Version: 2.32
: P2 normal
Target Milestone: ---
Assignee: Cary Coutant
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-11-29 14:02 UTC by H.J. Lu
Modified: 2018-11-29 17:50 UTC (History)
1 user (show)

See Also:
Host:
Target:
Build:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description H.J. Lu 2018-11-29 14:02:02 UTC
GCC 8.2 triggers

gold_assert(len >= this->do_minimum_hole_size());

Breakpoint 1, gold::Output_fill_debug_info::do_write (this=0xcbbf10, 
    of=0xc79010, off=12652, len=4)
    at /export/gnu/import/git/sources/binutils-gdb/gold/output.cc:2063
2063	  gold_assert(len >= this->do_minimum_hole_size());
(gdb) call len
$1 = 4
(gdb) p this->do_minimum_hole_size()
$2 = 11
(gdb)
Comment 1 H.J. Lu 2018-11-29 17:50:51 UTC
It is caused by PR 23919 change.