mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 11:39:26 +08:00
gold won't build with gcc-9
* symtab.h (Symbol::Symbol): Avoid -Wclass-memaccess warning.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2018-12-05 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
|
* symtab.h (Symbol::Symbol): Avoid -Wclass-memaccess warning.
|
||||||
|
|
||||||
2018-12-03 Alexey Neyman <stilor@att.net>
|
2018-12-03 Alexey Neyman <stilor@att.net>
|
||||||
|
|
||||||
PR gold/23594
|
PR gold/23594
|
||||||
|
@ -914,7 +914,7 @@ class Symbol
|
|||||||
// Instances of this class should always be created at a specific
|
// Instances of this class should always be created at a specific
|
||||||
// size.
|
// size.
|
||||||
Symbol()
|
Symbol()
|
||||||
{ memset(this, 0, sizeof *this); }
|
{ memset(static_cast<void*>(this), 0, sizeof *this); }
|
||||||
|
|
||||||
// Initialize the general fields.
|
// Initialize the general fields.
|
||||||
void
|
void
|
||||||
|
Reference in New Issue
Block a user