-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AMDGPU][NFC] Add True16 operand definitions.
Reviewed By: Joe_Nash Differential Revision: https://reviews.llvm.org/D156103
- Loading branch information
Showing
11 changed files
with
257 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
9310baa
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.
This patch breaks the
-Werror
build with clang-14.0.6 because the functions you are adding tollvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
, such asDecodeVGPR_16RegisterClass
andDecodeVGPR_16_Lo128RegisterClass
, are not used anywhere.I could remove them, but I am wondering if you are planning to use them in near future. I'm happy to add
[[maybe_unused]]
if you are planning to use them in near future. Alternatively, I could remove them. Please let me know. Thanks!9310baa
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.
@kazutakahirata Hi, I'm going to submit more patches today that will make them be used, but if it's very unrgent,
[[maybe_unused]]
would do -- thanks!9310baa
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.
@kazutakahirata It seems submitting https://reviews.llvm.org/D156104 fixed this.
9310baa
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.
I checked in a patch to add
[[maybe_used]]
but already reverted it. Thanks!