-
Notifications
You must be signed in to change notification settings - Fork 15.2k
[llvm-debuginfo-analyzer] Common handling of unsigned attribute values. #116027
New issue
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
Changes from 3 commits
9fb77c9
cdf1783
6e8913e
1f771ae
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,17 +1,22 @@ | ||
| set(LLVM_LINK_COMPONENTS | ||
| ${LLVM_TARGETS_TO_BUILD} | ||
| AllTargetsDescs | ||
| AllTargetsDisassemblers | ||
| AllTargetsInfos | ||
| AsmPrinter | ||
| DebugInfoLogicalView | ||
| MC | ||
| MCDisassembler | ||
| TargetParser | ||
| ) | ||
|
|
||
| add_llvm_unittest_with_input_files(DebugInfoLogicalViewTests | ||
| ../DWARF/DwarfGenerator.cpp | ||
| ../DWARF/DwarfUtils.cpp | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is okay for now, but really these components should be moved into their own library so they can be shared between unittests.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That is a good point. I created a PR to record that request. #117864 |
||
| CodeViewReaderTest.cpp | ||
| CommandLineOptionsTest.cpp | ||
| CompareElementsTest.cpp | ||
| DWARFGeneratedTest.cpp | ||
| DWARFReaderTest.cpp | ||
| SelectElementsTest.cpp | ||
| LocationRangesTest.cpp | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't this make the next 3 lines superfluous?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nico That is a good point. With your suggested change, all pre-commit test pass.
Opened #118052