Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
| tools/llvm-nm/llvm-nm.cpp | ||
|---|---|---|
| 915 ↗ | (On Diff #205743) | Shouldn't the new code fail with LLVM_ENABLE_ABI_BREAKING_CHECKS because of removing this line? |
| tools/llvm-nm/llvm-nm.cpp | ||
|---|---|---|
| 915 ↗ | (On Diff #205743) | llvm::object::SectionRef::getName(StringRef) still returns error_code... ( it has 95 references so i didn't fix it to use Error instead) |
| tools/llvm-nm/llvm-nm.cpp | ||
|---|---|---|
| 915 ↗ | (On Diff #205743) | Oh sorry, it should be Expected<StringRef>. Anyway, I haven't started the refactoring yet.. |
Comment Actions
LGTM (assuming the output is consistent with GNU nm).
| tools/llvm-nm/llvm-nm.cpp | ||
|---|---|---|
| 915 ↗ | (On Diff #205743) | Ah, I see. |