We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using arbitrary GCC 4.8.0+, I can see:
$ cat ipa-icf.ii template < typename _Tp> class Trans_NS___cxx11_list { typedef _Tp iterator; typedef _Tp _Node; _Node _M_create_node(); public: iterator end() ; void push_back(_Tp ) { _M_insert(end()); } template < typename... _Args > void _M_insert(_Args ... ) { _M_create_node(); } }; class sem_item_optimizer { Trans_NS___cxx11_list< int * > worklist; void worklist_push(); }; int *worklist_push_cls; void sem_item_optimizer::worklist_push() { worklist.push_back(worklist_push_cls); } $ g++ /tmp/ipa-icf.ii -g -c -O2 $ ./bin/diva ipa-icf.o Warning: Ignoring unrecognised DW_AT, DW_FORM combination 'DW_AT_const_value', 'DW_FORM_block1'. Warning: Ignoring unknown/unsupported DWARF tag 'DW_TAG_GNU_call_site'. Warning: Ignoring unknown/unsupported DWARF tag 'DW_TAG_GNU_formal_parameter_pack'. Warning: Ignoring unknown/unsupported DWARF tag 'DW_TAG_dwarf_procedure'. diva: /home/marxin/Programming/DIVA/DIVA/ElfDwarfReader/src/ElfDwarfReader.cpp:155: void ElfDwarfReader::DwarfReader::createCompileUnits(const ElfDwarfReader::DwarfDebugData&, LibScopeView::ScopeRoot&): Assertion `ReferencesToBeSet.empty() && "Some objects had a reference that was not created"' failed. Aborted (core dumped)
Thanks
The text was updated successfully, but these errors were encountered:
Thanks for the bug report.
Repro: repro.zip
Sorry, something went wrong.
Don't assert all references have been resolved if Dies were skipped, F…
14dd386
…ixes SNSystems#17
79ef6d6
afd0fd9
Merge pull request #18 from SeanEveson/assertion_issue_17
53d05ad
Don't assert all references have been resolved if Dies were skipped, Fixes #17
No branches or pull requests
Using arbitrary GCC 4.8.0+, I can see:
Thanks
The text was updated successfully, but these errors were encountered: