This is an archive of the discontinued LLVM Phabricator instance.

[llvm-nm] Generalize symbol types 'N' and 'n'
ClosedPublic

Authored by MaskRay on Jun 19 2019, 11:57 PM.

Diff Detail

Event Timeline

MaskRay created this revision.Jun 19 2019, 11:57 PM
Herald added a project: Restricted Project. · View Herald TranscriptJun 19 2019, 11:57 PM
MaskRay updated this revision to Diff 205743.Jun 20 2019, 12:03 AM

Improve the test

grimar added inline comments.Jun 20 2019, 12:38 AM
tools/llvm-nm/llvm-nm.cpp
915

Shouldn't the new code fail with LLVM_ENABLE_ABI_BREAKING_CHECKS because of removing this line?

MaskRay marked an inline comment as done.Jun 20 2019, 12:50 AM
MaskRay added inline comments.
tools/llvm-nm/llvm-nm.cpp
915

llvm::object::SectionRef::getName(StringRef) still returns error_code... ( it has 95 references so i didn't fix it to use Error instead)

MaskRay marked an inline comment as done.Jun 20 2019, 12:51 AM
MaskRay added inline comments.
tools/llvm-nm/llvm-nm.cpp
915

Oh sorry, it should be Expected<StringRef>. Anyway, I haven't started the refactoring yet..

grimar accepted this revision.Jun 20 2019, 12:52 AM

LGTM (assuming the output is consistent with GNU nm).

tools/llvm-nm/llvm-nm.cpp
915

Ah, I see.

This revision is now accepted and ready to land.Jun 20 2019, 12:52 AM
jhenderson accepted this revision.Jun 20 2019, 2:38 AM

LGTM too. I'll update the doc patch.

This revision was automatically updated to reflect the committed changes.