diff options
author | Alan Modra <amodra@gmail.com> | 2021-07-20 18:46:57 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-07-20 20:15:48 +0930 |
commit | b97bd976233ee4d43c2fe18f6356e62779cbe82d (patch) | |
tree | dd0c04bae30dbf5f72920631361520224b4f5a90 /gold/ChangeLog | |
parent | 05558223b5b52bf41036eb80335d2e541187e78f (diff) | |
download | fsf-binutils-gdb-b97bd976233ee4d43c2fe18f6356e62779cbe82d.zip fsf-binutils-gdb-b97bd976233ee4d43c2fe18f6356e62779cbe82d.tar.gz fsf-binutils-gdb-b97bd976233ee4d43c2fe18f6356e62779cbe82d.tar.bz2 |
PR28106, build of 2.37 fails on FreeBSD and Clang
https://en.cppreference.com/w/cpp/types/NULL says NULL might be
defined as nullptr.
https://en.cppreference.com/w/cpp/language/reinterpret_cast says
reinterpret_cast can't be used on nullptr.
PR gold/28106
PR gold/27815
* gc.h (gc_process_relocs): Use static_cast in Section_id constructor.
Diffstat (limited to 'gold/ChangeLog')
-rw-r--r-- | gold/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog index 6aba1e0..df92052 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,9 @@ +2021-07-20 Alan Modra <amodra@gmail.com> + + PR gold/28106 + PR gold/27815 + * gc.h (gc_process_relocs): Use static_cast in Section_id constructor. + 2021-07-17 Michael Krasnyk <michael.krasnyk@gmail.com> PR gold/28098 |