llvmbot
llvmbot
@llvm/pr-subscribers-mlir-vector @llvm/pr-subscribers-mlir @llvm/pr-subscribers-llvm-selectiondag @llvm/pr-subscribers-clang Author: Balaji V. Iyer. (bviyer) Changes Fixes https://github.com/llvm/llvm-project/issues/154713 --- Full diff: https://github.com/llvm/llvm-project/pull/172399.diff 2 Files Affected: - (modified) clang/lib/AST/ExprConstant.cpp (+4) - (added) clang/test/AST/array-overflow-index.c (+9) ``````````diff diff --git...
@llvm/pr-subscribers-libc Author: Connector Switch (c8ef) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/172312.diff 2 Files Affected: - (modified) libc/include/llvm-libc-macros/netinet-in-macros.h (+9) - (modified) libc/test/include/netinet_in_test.cpp (+5) ``````````diff diff --git a/libc/include/llvm-libc-macros/netinet-in-macros.h b/libc/include/llvm-libc-macros/netinet-in-macros.h index f97a2dd0c3fda..3148aed6bb112 100644 ---...
@llvm/pr-subscribers-backend-aarch64 @llvm/pr-subscribers-llvm-selectiondag Author: Valeriy Savchenko (SavchenkoValeriy) Changes Recent fixes in division legalization trip the legality assertion when NewNodesMustHaveLegalTypes is set. --- Full diff: https://github.com/llvm/llvm-project/pull/172321.diff 2 Files Affected: - (modified) llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp...
@llvm/pr-subscribers-llvm-transforms @llvm/pr-subscribers-llvm-analysis @llvm/pr-subscribers-backend-amdgpu Author: Matt Arsenault (arsenm) Changes --- Patch is 30.13 KiB, truncated to 20.00 KiB below, full version: https://github.com/llvm/llvm-project/pull/172490.diff 2 Files Affected: - (modified) llvm/lib/Analysis/ValueTracking.cpp (+33) - (modified)...
@llvm/pr-subscribers-llvm-support Author: Bertik23 (Bertik23) Changes Add DidSaveTextDocumentParams Direct copy from clangd. --- Full diff: https://github.com/llvm/llvm-project/pull/172637.diff 2 Files Affected: - (modified) llvm/include/llvm/Support/LSP/Protocol.h (+11) - (modified) llvm/lib/Support/LSP/Protocol.cpp (+10) ``````````diff diff --git a/llvm/include/llvm/Support/LSP/Protocol.h...
@llvm/pr-subscribers-mlir @llvm/pr-subscribers-mlir-llvm Author: Srinivasa Ravi (Wolfram70) Changes This change adds the `NVVM_IntrinsicLoweringOp` class in `NVVMOps.td` to simplify Ops which lower using intrinsics. Some Ops have been updated to show its...
@llvm/pr-subscribers-llvm-transforms @llvm/pr-subscribers-backend-amdgpu Author: Matt Arsenault (arsenm) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/172491.diff 1 Files Affected: - (added) llvm/test/Transforms/Attributor/AMDGPU/nofpclass-amdgcn-log.ll (+277) ``````````diff diff --git a/llvm/test/Transforms/Attributor/AMDGPU/nofpclass-amdgcn-log.ll b/llvm/test/Transforms/Attributor/AMDGPU/nofpclass-amdgcn-log.ll new file mode 100644 index 0000000000000..9040030787baf ---...
@llvm/pr-subscribers-backend-risc-v Author: Alex Bradbury (asb) Changes Transform (and (shl x, c1), c2) -> (shl (and x, c2 >> c1), c1) as long as the shifted mask fits into a 12-bit...
@llvm/pr-subscribers-backend-mips @llvm/pr-subscribers-backend-amdgpu @llvm/pr-subscribers-backend-nvptx @llvm/pr-subscribers-backend-powerpc @llvm/pr-subscribers-llvm-selectiondag Author: YunQiang Su (wzssyqa) Changes ISD::FMAXNUM and ISD::FMINNUM treat +0.0>-0.0 now, so let's set MinMaxMustRespectOrderedZero for it. --- Full diff: https://github.com/llvm/llvm-project/pull/137367.diff 1 Files Affected: -...
@llvm/pr-subscribers-llvm-transforms Author: Rajveer Singh Bharadwaj (Rajveer100) Changes Resolves #150606 Currently `ssa.copy` is used mostly for straight line code, i.e, without joins or uses of phi nodes. With this, passes would...