diff options
author | Alan Modra <amodra@gmail.com> | 2021-05-20 08:19:00 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-05-22 17:23:06 +0930 |
commit | 1f1fb219fdc4f96fd967e6173e9090c4c4917e96 (patch) | |
tree | 609630b8c3e12699e6b08e449cd5e32794226933 /gold/gc.h | |
parent | 168671c14cc88e0c47a2b7d56fdede7d6604f14d (diff) | |
download | gdb-1f1fb219fdc4f96fd967e6173e9090c4c4917e96.zip gdb-1f1fb219fdc4f96fd967e6173e9090c4c4917e96.tar.gz gdb-1f1fb219fdc4f96fd967e6173e9090c4c4917e96.tar.bz2 |
[GOLD] PR27815, gold fails to build with latest GCC
...gold/gc.h:250:37: error: ISO C++ says that these are ambiguous, even though the worst conversion for the first is better than the worst conversion for the second: [-Werror]
250 | (*secvec).push_back(Section_id(NULL, 0));
| ^~~~~~~~~~~~~~~~~~~
PR gold/27815
* gc.h (gc_process_relocs): Use nullptr in Section_id constructor.
Diffstat (limited to 'gold/gc.h')
-rw-r--r-- | gold/gc.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -247,7 +247,7 @@ gc_process_relocs( if (is_ordinary) (*secvec).push_back(Section_id(src_obj, dst_indx)); else - (*secvec).push_back(Section_id(NULL, 0)); + (*secvec).push_back(Section_id(nullptr, 0)); // If the target of the relocation is an STT_SECTION symbol, // make a note of that by storing -1 in the symbol vector. if (lsym.get_st_type() == elfcpp::STT_SECTION) @@ -329,7 +329,7 @@ gc_process_relocs( if (is_ordinary && dst_obj != NULL) (*secvec).push_back(Section_id(dst_obj, dst_indx)); else - (*secvec).push_back(Section_id(NULL, 0)); + (*secvec).push_back(Section_id(nullptr, 0)); (*symvec).push_back(gsym); (*addendvec).push_back(std::make_pair( static_cast<long long>(symvalue), |