LLVM/project 12b2a67llvm/lib/Transforms/AggressiveInstCombine TruncInstCombine.cpp, llvm/test/Transforms/AggressiveInstCombine trunc_vector_instrs.ll

[AggressiveInstCombine] Add shufflevector support to TruncInstCombine (#220218)

Previously, expression graphs containing shufflevector could not be
reduced to a smaller bit-width. This change adds support for traversing
and rebuilding shufflevector operations during the transformation,
allowing truncation to propagate through shuffle operations.

The shuffle mask and vector shape are preserved while the operands are
rebuilt with the reduced element type.

This removes the corresponding TODO in TruncInstCombine.cpp.

AI Tool Used: GitHub Copilot
DeltaFile
+6-10llvm/test/Transforms/AggressiveInstCombine/trunc_vector_instrs.ll
+12-4llvm/lib/Transforms/AggressiveInstCombine/TruncInstCombine.cpp
+18-142 files

FreeBSD/ports 9cc5e19textproc/moor Makefile distinfo

textproc/moor: Update 2.18.0 => 2.19.0

Upstream dropped Go 1.27 requirement.

Changelog:
https://github.com/walles/moor/releases/tag/v2.19.0

Reported by:    repology
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+5-5textproc/moor/distinfo
+2-3textproc/moor/Makefile
+7-82 files

LLVM/project 3eb8494llvm/include/llvm/TargetParser AMDGPUTargetParser.h, llvm/lib/Target/AMDGPU GCNSubtarget.h

[AMDGPU] Add APIs `getTotalNumVGPRs` and `getAddressableNumVGPRs` to TargetParser (#220695)

These align with `getTotalNumSGPRs` and `getAddressableNumSGPRs` that
already exist.
DeltaFile
+43-6llvm/lib/TargetParser/AMDGPUTargetParser.cpp
+43-0llvm/unittests/TargetParser/TargetParserTest.cpp
+13-16llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
+12-0llvm/include/llvm/TargetParser/AMDGPUTargetParser.h
+9-2llvm/lib/Target/AMDGPU/GCNSubtarget.h
+0-3llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
+120-272 files not shown
+122-298 files

LLVM/project 50766c9libc/hdr/types pthread_attr_t.h, libc/src/pthread pthread_getattr_np.h CMakeLists.txt

[libc] Implement pthread_getattr_np (#221231)

Implement the GNU extension pthread_getattr_np.

For the stack address and size, the function returns the same value as
pthread_getstack_np. Specifically, this means returning
PTHREAD_STACK_DYNAMIC_NP for the main thread. Since we're not promising
async-signal-safety of this function, we could parse /proc/self/maps
(like glibc does), to get the actual stack VMA, but:
- that's a lot of code
- I'm not particularly fond of relying on /proc for libc features
- the consistency with pthread_getattr_np is nice

For these reasons, I'm not implementing this (or other alternatives like
RLIMIT_STACK) right now. This incidentally means that the current
implementation of this function is async-signal-safe, but that is likely
to change once we add support for additional attributes.

For consistency with glibc, I report the guard size of newly created

    [4 lines not shown]
DeltaFile
+268-0libc/test/integration/src/pthread/pthread_getattr_np_test.cpp
+52-0libc/src/pthread/pthread_getattr_np.cpp
+29-0libc/test/integration/src/pthread/CMakeLists.txt
+27-0libc/hdr/types/pthread_attr_t.h
+18-0libc/src/pthread/CMakeLists.txt
+10-4libc/src/pthread/pthread_getattr_np.h
+404-45 files not shown
+419-411 files

LLVM/project d396038libcxx/include tuple, libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply make_from_tuple.pass.cpp

[libc++] Fix make_from_tuple for reference types (#220966)

#215067 refactored `make_from_tuple`, which introduced a regression when
trying to construct reference types with it.
DeltaFile
+5-0libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/make_from_tuple.pass.cpp
+1-1libcxx/include/tuple
+6-12 files

LLVM/project 8ade303offload/include OmpAccError.h, offload/liboffload exports

[offload][omp] Add own Error class to libomptarget
DeltaFile
+64-0offload/include/OmpAccError.h
+26-32offload/libompaccsupport/device.cpp
+43-0offload/libompaccsupport/OmpAccError.cpp
+13-14offload/libompaccsupport/Program.cpp
+6-5offload/libompaccsupport/PluginManager.cpp
+0-2offload/liboffload/exports
+152-531 files not shown
+153-537 files

LLVM/project 46c9123flang/lib/Optimizer/OpenACC/Transforms ACCMapInfoPrep.cpp, flang/test/Fir/OpenACC acc-fir-map-info-prep-exit.mlir acc-fir-map-info-prep-types.mlir

[acc] Pre-cg pass for handling flang data mapping to offload runtime (#221282)

Introduce acc.map_info as the acc dialect operation that captures a
single mapped object's offload facts (attach point, descriptor kind,
bounds, map flags, and size) so later codegen can lower data clauses to
the offload runtime from one representation.

Add a Flang pre-codegen pass, ACCMapInfoPrep, that materializes
acc.map_info for FIR-typed operands: it infers Fortran descriptor attach
and CFI facts, sizes mapped and privatized storage, and folds paired
enter/exit clause effects into map flags. This keeps FIR-specific
mapping logic out of ACCToLLVM and leaves that conversion to consume
map_info verbatim.
DeltaFile
+562-0flang/lib/Optimizer/OpenACC/Transforms/ACCMapInfoPrep.cpp
+302-0mlir/lib/Dialect/OpenACC/Utils/OpenACCUtilsCG.cpp
+229-0flang/test/Fir/OpenACC/acc-fir-map-info-prep-clauses.mlir
+228-0flang/test/Fir/OpenACC/acc-fir-map-info-prep-types.mlir
+222-0flang/test/Fir/OpenACC/acc-fir-map-info-prep-exit.mlir
+143-0mlir/test/Dialect/OpenACC/ops-cg-mapinfo.mlir
+1,686-023 files not shown
+2,685-6129 files

LLVM/project 03fd869clang/lib/CodeGen MicrosoftCXXABI.cpp

[MicrosoftCXXABI] Remove unnecessary zero-index GEP (#222025)

This was creating a zero-index GEP constant expression, which is
equivalent to the base pointer, and will be folded away.
DeltaFile
+1-7clang/lib/CodeGen/MicrosoftCXXABI.cpp
+1-71 files

LLVM/project 0117d8cmlir/test lit.cfg.py, mlir/test/Target/LLVMIR/nvvm tcgen05-mma-shared.mlir tcgen05-mma-shared-ti16.mlir

[MLIR][NVVM] Add optional llc verification for NVVM dialect tests (#219980)

The motivation is to verify that MLIR NVVM dialect operations lower to
LLVM IR that is accepted by the NVPTX backend. Running llc gives these
tests an extra end-to-end check beyond textual IR matching and helps
catch mismatches between MLIR lowering, NVVM intrinsics, and backend
expectations.

A valid LLVM intrinsic call isn't necessarily selectable for every
combination of its immargs and target features. There is a concrete
NVPTX example in
`llvm/test/CodeGen/NVPTX/tcgen05-mma-collector-b-i8-invalid.ll`. The
intrinsic has a valid signature and individually valid immediate values,
but the combination `kind=i8` and `collector_b=lastuse` is not
supported. LLVM IR verification accepts it, while `llc` rejects it with
Cannot select.

The corresponding MLIR verifier does not duplicate every NVPTX
instruction-selection predicate. It currently checks MLIR-level

    [22 lines not shown]
DeltaFile
+17-0mlir/test/lit.cfg.py
+1-0mlir/test/Target/LLVMIR/nvvm/tcgen05-mma-shared.mlir
+1-0mlir/test/Target/LLVMIR/nvvm/tcgen05-mma-shared-ti16.mlir
+1-0mlir/test/Target/LLVMIR/nvvm/tcgen05-mma-shared-decompress-b.mlir
+1-0mlir/test/Target/LLVMIR/nvvm/tcgen05-mma-shared-collector-b.mlir
+21-05 files

FreeNAS/freenas a310c9fsrc/middlewared/middlewared/pytest/unit/utils test_license_legacy_utils.py test_entitlements.py, src/middlewared/middlewared/utils/entitlements engine.py

NAS-143184 / 26.0.0-RC.1 / Rename the DIRECTORY_SERVICES entitlement to DIRECTORY_SERVICES_AUTH (by sonicaj) (#19653)

This commit adds changes to follow the LicenseFeature rename in
truenas_pylicensed, covering the entitlement matrix, the policy
register, display names, the per-feature message overrides, the legacy
injection set and the ds_auth gate. The unrelated directoryservices
namespace and the ds_auth field itself are deliberately untouched.

Worth flagging for whoever lands this: python3-truenas-pylicensed is
unversioned in debian/control, and because this is a rename rather than
an addition, both skew directions break at import time. New middleware
against the old package and old middleware against the new one each
raise AttributeError while importing middlewared.utils.entitlements,
which leaves middlewared unable to start.

Original PR: https://github.com/truenas/middleware/pull/19632

Co-authored-by: Waqar Ahmed <waqarahmedjoyia at live.com>
DeltaFile
+2-2tests/directory_services/test_ldap_basic.py
+2-2tests/directory_services/test_activedirectory_basic.py
+2-2tests/api2/test_twofactor_auth.py
+2-2src/middlewared/middlewared/utils/entitlements/engine.py
+2-2src/middlewared/middlewared/pytest/unit/utils/test_license_legacy_utils.py
+2-2src/middlewared/middlewared/pytest/unit/utils/test_entitlements.py
+12-126 files not shown
+18-1812 files

LLVM/project 3bd526bllvm/lib/Target/RISCV RISCVTargetTransformInfo.cpp, llvm/test/Transforms/LoopUnroll/RISCV runtime-unroll-max-trip-count.ll unroll.ll

[RISCV] Stop ignoring intrinsics in costing for force unrolling (#221107)

All intrinsic calls were hitting the "continue" for !isLoweredToCall
and bypassing the getInstructionCost.

I've modified runtime-unroll-max-trip-count.ll to override unrolling
costs and remove the bswap intrinsics that were previously not counted.

Test case written by Claude.
DeltaFile
+45-0llvm/test/Transforms/LoopUnroll/RISCV/unroll.ll
+6-32llvm/test/Transforms/LoopUnroll/RISCV/runtime-unroll-max-trip-count.ll
+3-5llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp
+54-373 files

LLVM/project d5d1274clang/lib/CodeGen CGObjCMac.cpp

[CGObjCMac] Remove unnecssary zero-index GEPs (#222023)

getConstantGEP() was always called with two zero indices. However,
with opaque pointers, zero-index GEPs are redundant and will fold
away.
DeltaFile
+10-22clang/lib/CodeGen/CGObjCMac.cpp
+10-221 files

LLVM/project bbf7b84clang/lib/CIR/CodeGen CIRGenBuiltinNVPTX.cpp, clang/test/CIR/CodeGenCUDA builtins-nvvm-fma-oob.cu builtins-nvvm-half.cu

[CIR][NVPTX] Add support for NVVM half type builtins (#221859)

Adds codegen for the following NVVM half type builtins:

- `__nvvm_ex2_approx_{f16,f16x2}`
- `__nvvm_fmin{_ftz,}{_nan,}{_xorsign_abs,}_{f16,f16x2}`
- `__nvvm_fmax{_ftz,}{_nan,}{_xorsign_abs,}_{f16,f16x2}`
- `__nvvm_fma_rn{_ftz,}{_relu,_sat,}_{f16,f16x2}`
- `__nvvm_fma_rn_oob{_relu,}_{f16,bf16,f16x2,bf16x2}`

These are lowered to the corresponding llvm.nvvm.* intrinsics.

This diverges a bit from OG, as no half-type helper is needed here. OG
routes these through `MakeHalfType`, which coerces each argument to the
intrinsic's declared parameter type, appends the intrinsic's defaulted
arguments, and
asserts that no argument is an integer constant expression. None of that
is needed for the builtins in this patch as each already agrees with its
intrinsic on operand and result types, and none has defaulted

    [6 lines not shown]
DeltaFile
+391-0clang/test/CIR/CodeGenCUDA/builtins-nvvm-half.cu
+112-218clang/lib/CIR/CodeGen/CIRGenBuiltinNVPTX.cpp
+87-0clang/test/CIR/CodeGenCUDA/builtins-nvvm-fma-oob.cu
+590-2183 files

LLVM/project b5395edllvm/lib/CodeGen WindowsSecureHotPatching.cpp

[WindowsSecureHotPatching] Remove redundant getGetElementPtr() (NFC) (#222019)

This was creating a degenerate getelementptr without any indices,
which is equivalent to the base pointer and will fold away.
DeltaFile
+1-4llvm/lib/CodeGen/WindowsSecureHotPatching.cpp
+1-41 files

FreeNAS/freenas 94ab59e

Empty commit to create PR on github.

You should reset it
DeltaFile
+0-00 files

LLVM/project 07af01cllvm/include/llvm/Transforms/IPO Attributor.h, llvm/lib/Transforms/IPO AttributorAttributes.cpp

[Attributor] Remove dead function getKnownConstantRange (#221897)

getKnownConstantRange was added on January 15, 2020 in commit
188f9a348dc545bf9a420d998ad37761bddd7285 without any callers and has
been unused since.
DeltaFile
+0-13llvm/lib/Transforms/IPO/AttributorAttributes.cpp
+0-6llvm/include/llvm/Transforms/IPO/Attributor.h
+0-192 files

FreeNAS/freenas 2a19662src/middlewared/middlewared/pytest/unit/utils test_license_legacy_utils.py test_entitlements.py, src/middlewared/middlewared/utils/entitlements engine.py

NAS-143184 / 26.0.0 / Rename the DIRECTORY_SERVICES entitlement to DIRECTORY_SERVICES_AUTH (#19632)

This commit adds changes to follow the LicenseFeature rename in
truenas_pylicensed, covering the entitlement matrix, the policy
register, display names, the per-feature message overrides, the legacy
injection set and the ds_auth gate. The unrelated directoryservices
namespace and the ds_auth field itself are deliberately untouched.

Worth flagging for whoever lands this: python3-truenas-pylicensed is
unversioned in debian/control, and because this is a rename rather than
an addition, both skew directions break at import time. New middleware
against the old package and old middleware against the new one each
raise AttributeError while importing middlewared.utils.entitlements,
which leaves middlewared unable to start.
DeltaFile
+2-2tests/directory_services/test_ldap_basic.py
+2-2tests/directory_services/test_activedirectory_basic.py
+2-2tests/api2/test_twofactor_auth.py
+2-2src/middlewared/middlewared/utils/entitlements/engine.py
+2-2src/middlewared/middlewared/pytest/unit/utils/test_license_legacy_utils.py
+2-2src/middlewared/middlewared/pytest/unit/utils/test_entitlements.py
+12-126 files not shown
+18-1812 files

LLVM/project fe65dbfllvm/lib/Target/ARM ARMInstrInfo.cpp ARMBaseInstrInfo.cpp, llvm/lib/Target/M68k M68kInstrInfo.cpp

CodeGen: Remove stale LiveVariables.h includes from ARM and M68k InstrInfo (#222000)

Co-authored-by: Claude (Claude-Opus-4.8)
DeltaFile
+0-1llvm/lib/Target/M68k/M68kInstrInfo.cpp
+0-1llvm/lib/Target/ARM/ARMInstrInfo.cpp
+0-1llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
+0-33 files

LLVM/project f1f0f21llvm/lib/Transforms/Vectorize CMakeLists.txt SLPVectorizer.cpp, llvm/lib/Transforms/Vectorize/SLPVectorizer SLPMemoryUtils.h SLPMemoryUtils.cpp

[SLP][modularisation][NFC] Move pointer/stride helpers to SLPMemoryUtils (#221786)

Move the following BoUpSLP-independent pointer/stride helpers out of
SLPVectorizer.cpp into a new SLPVectorizer/SLPMemoryUtils.{h,cpp}:

  arePointersCompatible
  computeCommonAlignment
  calculateRtStride

arePointersCompatible reads the file-local RecursionMaxDepth cl::opt.
The option stays static in SLPVectorizer.cpp; the moved helper takes its
value as an explicit unsigned parameter. Behavior is unchanged.

Part of the SLPVectorizer.cpp modularization effort:
https://discourse.llvm.org/t/modularizing-slpvectorizer-cpp/90922

Assisted by AI.
DeltaFile
+157-0llvm/lib/Transforms/Vectorize/SLPVectorizer/SLPMemoryUtils.cpp
+7-141llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+56-0llvm/lib/Transforms/Vectorize/SLPVectorizer/SLPMemoryUtils.h
+1-0llvm/utils/gn/secondary/llvm/lib/Transforms/Vectorize/BUILD.gn
+1-0llvm/lib/Transforms/Vectorize/CMakeLists.txt
+222-1415 files

LLVM/project ee89c01llvm/lib/Target/XCore XCoreISelLowering.cpp

[XCore] Use getPtrAdd() instead of getGetElementPtr() (NFC) (#222017)

This was creating an i8 getelementptr, which is exactly what
ptradd is.
DeltaFile
+1-2llvm/lib/Target/XCore/XCoreISelLowering.cpp
+1-21 files

LLVM/project 91a4951llvm/test/CodeGen/SPIRV/debug-info debug-declare-module-scope-variable.ll

Fix linter.
DeltaFile
+1-1llvm/test/CodeGen/SPIRV/debug-info/debug-declare-module-scope-variable.ll
+1-11 files

LLVM/project 8a3d6f8lldb/docs/resources test.md, lldb/packages/Python/lldbsuite/test decorators.py

[lldb] Add requireClang decorator (#222007)

- Add requireClang, marking Clang-only tests as UNSUPPORTED elsewhere
instead of SKIPPED, following the existing require* convention.
- Replace the ~30 standalone @skipIf(compiler=no_match("clang")) uses
with @requireClang; leave the cases paired with a compiler_version check
as-is, since those are more complex than a simple compiler check.
- Remove the now-unused skipUnlessCompilerIsClang in favor of
requireClang.
- Update the testing docs to mention requireClang.

Follow-up to #214197.
DeltaFile
+9-13lldb/packages/Python/lldbsuite/test/decorators.py
+6-3lldb/docs/resources/test.md
+3-3lldb/test/API/lang/cpp/abi_tag_structors/TestAbiTagStructors.py
+2-2lldb/test/API/commands/expression/import-std-module/iterator/TestIteratorFromStdModule.py
+2-2lldb/test/API/commands/expression/import-std-module/basic/TestImportStdModule.py
+1-1lldb/test/API/lang/cpp/forward/TestCPPForwardDeclaration.py
+23-2423 files not shown
+46-4729 files

NetBSD/pkgsrc VvqGRkjdoc CHANGES-2026

   doc: Updated www/resterm to 1.7.0
VersionDeltaFile
1.5943+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc DZ64GXQwww/resterm go-modules.mk Makefile

   resterm: Update to 1.7.0

   Editor diagnostics
   Diagnostic settings
   Variable and expression errors
   Unicode text
   Response split shortcuts
   Other improvements
VersionDeltaFile
1.42+3-3www/resterm/distinfo
1.48+1-1www/resterm/Makefile
1.33+0-0www/resterm/go-modules.mk
+4-43 files

LLVM/project cec101butils/bazel/llvm-project-overlay/mlir BUILD.bazel

[Bazel] Fixes 52d922a (#222005)

This fixes 52d922aa153b1232813470e014635419ce006023 (#221811).

Buildkite error link:
https://buildkite.com/llvm-project/upstream-bazel/builds?commit=52d922aa153b1232813470e014635419ce006023

Co-authored-by: Google Bazel Bot <google-bazel-bot at google.com>
DeltaFile
+37-10utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+37-101 files

LLVM/project 1c5ed25llvm/test/CodeGen/X86 znver-pext.ll clmul-vector-256.ll

[X86] LowerCLMUL - fix unpack order of vXi32 CLMUL/CLMULH codegen (#222001)

Fix typo in the unpack order for vXi32 CLMUL/CLMULH codegen from #221289
and #221668 - I'd gotten the variable names right, but failed to
actually use the right variables!

Fixes #221964
DeltaFile
+433-439llvm/test/CodeGen/X86/clmul-vector.ll
+187-187llvm/test/CodeGen/X86/znver-pdep.ll
+173-174llvm/test/CodeGen/X86/pext-vector-128.ll
+170-171llvm/test/CodeGen/X86/pdep-vector-128.ll
+131-137llvm/test/CodeGen/X86/clmul-vector-256.ll
+93-93llvm/test/CodeGen/X86/znver-pext.ll
+1,187-1,2016 files not shown
+1,402-1,41712 files

LLVM/project 36a45b4llvm/lib/Target/SPIRV SPIRVNonSemanticDebugHandler.cpp, llvm/test/CodeGen/SPIRV/debug-info debug-declare.ll debug-declare-expression-xderef.ll

[SPIRV] Emit NonSemantic DebugDeclare, DebugExpression and DebugOperation.

Add support for
[DebugDeclare](https://github.khronos.org/SPIRV-Registry/nonsemantic/NonSemantic.Shader.DebugInfo.html#DebugDeclare),
[DebugExpression](https://github.khronos.org/SPIRV-Registry/nonsemantic/NonSemantic.Shader.DebugInfo.html#DebugExpression)
and
[DebugOperation](https://github.khronos.org/SPIRV-Registry/nonsemantic/NonSemantic.Shader.DebugInfo.html#DebugOperation).

Changes:
- Emit DebugDeclare from an indirect DBG_VALUE whose location register is
defined by OpVariable, which is what the spec requires of the Variable
operand. #dbg_declare does not survive as its own opcode in MIR, IRTranslator
lowers it to an indirect DBG_VALUE.
- Skip every other shape instead of emitting an invalid instruction: an access
chain into a field, an OpFunctionParameter for a byval argument, a constant
address, a register left without a def after dead storage was erased, a
variadic #dbg_value, an expression using an unmapped operation, and a variable
whose DebugLocalVariable was not emitted.
- Collect expressions from MIR, so DebugExpression and DebugOperation are

    [16 lines not shown]
DeltaFile
+183-9llvm/lib/Target/SPIRV/SPIRVNonSemanticDebugHandler.cpp
+98-0llvm/test/CodeGen/SPIRV/debug-info/debug-declare-line-scope.ll
+76-0llvm/test/CodeGen/SPIRV/debug-info/debug-global-variable-constant-value.ll
+76-0llvm/test/CodeGen/SPIRV/debug-info/debug-expression-out-of-range.ll
+60-0llvm/test/CodeGen/SPIRV/debug-info/debug-declare-expression-xderef.ll
+55-0llvm/test/CodeGen/SPIRV/debug-info/debug-declare.ll
+548-915 files not shown
+1,074-2121 files

LLVM/project 9005b8cllvm/lib/CodeGen MachinePipeliner.cpp

MachinePipeliner: Fix using getUniqueVRegDef on a physical register

Currently this is permissive and doesn't assert when called with
a physical register, but I'm working on changing this edge case.
No current observable change.

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+2-0llvm/lib/CodeGen/MachinePipeliner.cpp
+2-01 files

LLVM/project ef51633llvm/lib/CodeGen MachinePipeliner.cpp

Move check up
DeltaFile
+3-2llvm/lib/CodeGen/MachinePipeliner.cpp
+3-21 files

LLVM/project f988110llvm/lib/Target/SPIRV SPIRVNonSemanticDebugHandler.cpp, llvm/test/CodeGen/SPIRV/debug-info debug-local-variable-skip-type.ll debug-local-variable-retained-nodes.ll

[SPIRV] Add support for NSDI DebugLocalVariable.
DeltaFile
+69-11llvm/lib/Target/SPIRV/SPIRVNonSemanticDebugHandler.cpp
+58-0llvm/test/CodeGen/SPIRV/debug-info/debug-local-variable.ll
+43-0llvm/test/CodeGen/SPIRV/debug-info/debug-local-variable-records-and-retained.ll
+41-0llvm/test/CodeGen/SPIRV/debug-info/debug-local-variable-retained-nodes.ll
+41-0llvm/test/CodeGen/SPIRV/debug-info/debug-local-variable-dbg-value.ll
+32-0llvm/test/CodeGen/SPIRV/debug-info/debug-local-variable-skip-type.ll
+284-111 files not shown
+305-117 files