[PATCH] D144250: [AMDGPU] Simplify widenScalar condition for BigTy for G_(UN)MERGE_VALUES
Jay Foad via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 17 03:12:57 PST 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG62e4f81c6793: [AMDGPU] Simplify widenScalar condition for BigTy for G_(UN)MERGE_VALUES (authored by foad).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D144250/new/
https://reviews.llvm.org/D144250
Files:
llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
Index: llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
===================================================================
--- llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
+++ llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
@@ -1628,8 +1628,7 @@
Builder.widenScalarIf(
[=](const LegalityQuery &Query) {
const LLT Ty = Query.Types[BigTyIdx];
- return !llvm::has_single_bit<uint32_t>(Ty.getSizeInBits()) &&
- Ty.getSizeInBits() % 16 != 0;
+ return Ty.getSizeInBits() % 16 != 0;
},
[=](const LegalityQuery &Query) {
// Pick the next power of 2, or a multiple of 64 over 128.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D144250.498307.patch
Type: text/x-patch
Size: 644 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230217/638185de/attachment.bin>
More information about the llvm-commits
mailing list