FreeBSD/ports 33c32bbdevel/py-time-machine Makefile distinfo

devel/py-time-machine: Update to 3.5.1

Reported by:    portscout!
DeltaFile
+3-3devel/py-time-machine/distinfo
+1-1devel/py-time-machine/Makefile
+4-42 files

LLVM/project fc43372mlir/include/mlir/Dialect/GPU/IR GPUDialect.h GPUDialectDecl.h, mlir/lib/Dialect/Linalg/TransformOps DialectExtension.cpp

[mlir][GPU] Split the dialect declaration (NFC)

Introduce a self-contained dialect declaration and use it in two consumers
that need registration but not the generated operation umbrella.

Across three controlled rebuilds of the affected TUs, median instructions fell
from 82.473B to 75.865B (-8.012%) and median wall time fell from 12.51s to
11.34s (-9.353%).

Assisted-by: Codex
DeltaFile
+23-0mlir/include/mlir/Dialect/GPU/IR/GPUDialectDecl.h
+1-5mlir/include/mlir/Dialect/GPU/IR/GPUDialect.h
+1-1mlir/test/lib/Dialect/Linalg/TestLinalgTransforms.cpp
+1-1mlir/lib/Dialect/Linalg/TransformOps/DialectExtension.cpp
+26-74 files

LLVM/project 4240da5llvm/lib/Target/AMDGPU AMDGPUFeatures.td AMDGPU.td, llvm/lib/Target/AMDGPU/Utils AMDGPUBaseInfo.cpp

[AMDGPU] Model LDS allocation granularity with subtarget features

Add numeric LDS allocation granularity features, expose them through the TargetParser feature bitset, and use them in the existing backend query.

Generic targets select the largest covered allocation granularity so their resource calculations remain conservative.

Change-Id: Icdd501d008c9d3cd566bdc8bde4a75d566ecb90a
DeltaFile
+70-0llvm/test/TableGen/AMDGPUTargetDefErrors.td
+51-6llvm/utils/TableGen/Basic/AMDGPUTargetDefEmitter.cpp
+46-0llvm/unittests/TargetParser/TargetParserTest.cpp
+23-3llvm/lib/Target/AMDGPU/AMDGPU.td
+17-0llvm/lib/Target/AMDGPU/AMDGPUFeatures.td
+6-6llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
+213-152 files not shown
+223-188 files

LLVM/project 90eb92cllvm/lib/Target/AMDGPU GCNSubtarget.cpp AMDGPUAsmPrinter.cpp, llvm/lib/Target/AMDGPU/Utils AMDGPUBaseInfo.h AMDGPUBaseInfo.cpp

[AMDGPU] Add getLDSAllocGranule to TargetParser

Expose the LDS allocation granule from GPUKind and subarch without an
MCSubtargetInfo. Use the dedicated granularity features and consolidate
backend users on the byte-valued query.

Change-Id: Ic0c9345e7657ec3c6978a646628598cb7608b390
DeltaFile
+28-0llvm/lib/TargetParser/AMDGPUTargetParser.cpp
+16-0llvm/unittests/TargetParser/TargetParserTest.cpp
+0-14llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
+4-3llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
+0-5llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
+2-2llvm/lib/Target/AMDGPU/GCNSubtarget.cpp
+50-241 files not shown
+54-247 files

LLVM/project e9c3420mlir/include/mlir/Dialect/Linalg/IR Linalg.h LinalgDialect.h, mlir/lib RegisterAllDialects.cpp

[mlir][Linalg] Split the dialect declaration (NFC)

Introduce a self-contained dialect declaration and use it in five consumers
that need registration but not the generated operation umbrella.

Across three controlled rebuilds of the affected TUs, median instructions fell
from 130.162B to 114.154B (-12.298%) and median wall time fell from 20.30s to
17.85s (-12.069%).

Assisted-by: Codex
DeltaFile
+23-0mlir/include/mlir/Dialect/Linalg/IR/LinalgDialect.h
+1-7mlir/include/mlir/Dialect/Linalg/IR/Linalg.h
+1-1mlir/test/lib/Dialect/Tensor/TestTensorTransforms.cpp
+1-1mlir/lib/RegisterAllDialects.cpp
+1-1mlir/lib/Conversion/TosaToLinalg/TosaToLinalgPass.cpp
+1-1mlir/lib/Conversion/TosaToLinalg/TosaToLinalgNamedPass.cpp
+28-111 files not shown
+29-127 files

LLVM/project cdc2b94libc/hdr sys_file_macros.h, libc/include/sys file.yaml

[libc] Add sys/file.h and flock function. (#222737)

`flock` is a BSD function that manages advisory locks on opened files
(see https://man7.org/linux/man-pages/man2/flock.2.html)

It has enough differences from `fcntl`-based locking mechanism, and is
provided and used on Linux platforms.

* Add `<sys/file.h>` public header on Linux platforms with `flock`
declaration
  and proper macro used for `op` function argument.
* Provide a Linux implementation, which is a simple syscall wrapper
around
  `SYS_flock` syscall.

Assisted by: automated tooling, human-reviewed
DeltaFile
+69-0libc/test/src/sys/file/linux/flock_test.cpp
+33-0libc/src/__support/OSUtil/linux/syscall_wrappers/flock.h
+32-0libc/src/sys/file/linux/flock.cpp
+27-0libc/hdr/sys_file_macros.h
+25-0libc/src/sys/file/flock.h
+23-0libc/include/sys/file.yaml
+209-019 files not shown
+355-025 files

LLVM/project 071802fmlir/include/mlir/Dialect/LLVMIR ROCDLDialect.h ROCDLDialectDecl.h, mlir/lib RegisterAllDialects.cpp

[mlir][ROCDL] Split the dialect declaration (NFC)

Introduce a self-contained dialect declaration and use it in three consumers
that need registration but not the generated operation umbrella.

Across three controlled rebuilds of the affected TUs, median instructions fell
from 129.372B to 111.587B (-13.748%) and median wall time fell from 20.62s to
17.72s (-14.064%).

Assisted-by: Codex
DeltaFile
+17-0mlir/include/mlir/Dialect/LLVMIR/ROCDLDialectDecl.h
+1-3mlir/include/mlir/Dialect/LLVMIR/ROCDLDialect.h
+1-1mlir/test/lib/Dialect/GPU/TestGpuRewrite.cpp
+1-1mlir/lib/RegisterAllDialects.cpp
+1-1mlir/lib/CAPI/Dialect/ROCDL.cpp
+21-65 files

LLVM/project 40d4395mlir/include/mlir/Dialect/Affine/IR AffineOps.h, mlir/include/mlir/Dialect/Arith/IR ArithDialect.h ArithOpInterfaces.h

[mlir][Arith] Split dialect and support declarations to improve build time (NFC) (#222784)

Expose the Arith dialect, attributes, and interfaces without importing
generated operation classes. This lets registration and support-only
users avoid parsing the operation umbrella and its dependencies.

Across three controlled serial rebuilds of five dialect-only TUs, median
instructions fell from 49.429B to 39.665B (-19.755%) and wall time fell
from 7.40s to 5.85s (-20.946%). Across three -j16 rebuilds of 97 support
users, instructions fell from 1,686.265B to 1,531.867B (-9.156%) and
wall time fell from 29.17s to 28.07s (-3.771%).

Assisted-by: Codex
DeltaFile
+2-23mlir/include/mlir/Dialect/Arith/IR/Arith.h
+22-0mlir/include/mlir/Dialect/Arith/IR/ArithAttributes.h
+17-0mlir/include/mlir/Dialect/Arith/IR/ArithOpInterfaces.h
+16-0mlir/include/mlir/Dialect/Arith/IR/ArithDialect.h
+5-1mlir/include/mlir/Dialect/Affine/IR/AffineOps.h
+2-1mlir/include/mlir/Dialect/Vector/IR/VectorOps.h
+64-2527 files not shown
+89-4433 files

FreeBSD/ports e3dc67fmultimedia/mpv-mpris distinfo Makefile

multimedia/mpv-mpris: Update to 1.2

- Pet portclippy
- Take maintainership
- Update list of dependencies

ChangeLog:

1. https://github.com/hoyon/mpv-mpris/releases/tag/1.2
DeltaFile
+5-4multimedia/mpv-mpris/Makefile
+3-3multimedia/mpv-mpris/distinfo
+8-72 files

Linux/linux 08df884drivers/thermal thermal_sysfs.c

Merge tag 'thermal-7.3-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull thermal control fix from Rafael Wysocki:
 "Replace snprintf() with scnprintf() in the thermal core sysfs code to
  avoid compiler warnings about potential truncation of the names of the
  sysfs attributes (Andy Shevchenko)"

* tag 'thermal-7.3-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
  thermal: sysfs: switch to use scnprintf() to suppress truncation warning
DeltaFile
+6-6drivers/thermal/thermal_sysfs.c
+6-61 files

FreeBSD/ports e690018net/rustconn Makefile Makefile.crates

net/rustconn: Update to 0.21.10

ChangeLog:

1. https://github.com/totoshko88/RustConn/releases/tag/v0.21.10

Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+557-557net/rustconn/distinfo
+5-5net/rustconn/Makefile.crates
+1-1net/rustconn/Makefile
+563-5633 files

LLVM/project 3525b51mlir/lib/Dialect/Tosa/Transforms TosaProfileCompliance.cpp

[mlir][Tosa] Optimize compliance initialization for size (NFC)

The compliance-map constructor includes a 4,920-line generated initializer.
Mark it minsize because it runs only when creating the validation pass and
optimizing this single large function at -O3 is expensive.

LLVM pass timing attributes most of the saving to code generation. Greedy
register allocation fell from 7.070s to 1.348s as global live-range splitting
fell from 6.403s to 0.021s after the constructor became 47.6% smaller.

Across five controlled rebuilds of the affected TU, median instructions fell
from 205.087B to 66.157B (-67.742%) and median wall time fell from 19.83s to
7.95s (-59.909%).

Assisted-by: Codex
DeltaFile
+2-1mlir/lib/Dialect/Tosa/Transforms/TosaProfileCompliance.cpp
+2-11 files

LLVM/project 795c3camlir/include/mlir/Dialect/LLVMIR NVVMDialect.h NVVMDialectDecl.h, mlir/lib RegisterAllDialects.cpp

[mlir][NVVM] Split out the dialect declaration to improve build time (NFC) (#222783)

Move NVVMDialect to a self-contained declaration header and use it in
five consumers that do not need generated NVVM operations.

Across three controlled rebuilds of the affected TUs, median
instructions fell from 215.791B to 161.538B (-25.141%) and median wall
time fell from 33.40s to 24.66s (-26.168%).

Assisted-by: Codex
DeltaFile
+16-0mlir/include/mlir/Dialect/LLVMIR/NVVMDialectDecl.h
+1-2mlir/include/mlir/Dialect/LLVMIR/NVVMDialect.h
+2-1mlir/lib/Conversion/NVVMToLLVM/NVVMToLLVM.cpp
+1-1mlir/lib/RegisterAllDialects.cpp
+1-1mlir/lib/Dialect/NVGPU/TransformOps/NVGPUTransformOps.cpp
+1-1mlir/lib/Conversion/MathToNVVM/MathToNVVM.cpp
+22-61 files not shown
+23-77 files

Linux/linux 5897d05drivers/cpufreq cpufreq.c, drivers/opp of.c core.c

Merge tag 'pm-7.3-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull power management fixes from Rafael Wysocki:
 "These harden the cpufreq core against races with sysfs during policy
  creation, fix two issues in the OPP (Operating Performance Points)
  library, and make OPP print symbolic error names:

   - Zero-initialize the policy cpumask and initialize the policy rwsem
     before exposing the policy sysfs interface (Runyu Xiao and Zhongqiu
     Han)

   - Fix potential multiplication overflow when calculating freq in OPP
     core (Colin Ian King)

   - Fix use after free in _update_opp_table_clk() (Peter Griffin)

   - Use %pe to print symbolic error name in OPP (Sumeet Pawnikar)"

* tag 'pm-7.3-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:

    [5 lines not shown]
DeltaFile
+16-14drivers/opp/core.c
+3-3drivers/opp/of.c
+3-3drivers/cpufreq/cpufreq.c
+22-203 files

LLVM/project 9d39986mlir/include/mlir/Dialect/LLVMIR LLVMDialect.h LLVMDialectDecl.h, mlir/lib/Dialect/Vector/TransformOps VectorTransformOps.cpp

[mlir][LLVM] Split out the dialect declaration (NFC) (#222782)

Move LLVMDialect to a declaration header that retains its attribute and
type API but excludes generated operation classes. This narrows 12
dialect-only consumers.

Across three controlled rebuilds of the affected TUs, median
instructions fell from 207.570B to 176.073B (-15.174%) and median wall
time fell from 30.72s to 25.52s (-16.927%).

Assisted-by: Codex
DeltaFile
+19-0mlir/include/mlir/Dialect/LLVMIR/LLVMDialectDecl.h
+1-11mlir/include/mlir/Dialect/LLVMIR/LLVMDialect.h
+1-1mlir/test/lib/Dialect/LLVM/TestPatterns.cpp
+1-1mlir/test/lib/Dialect/ControlFlow/TestAssert.cpp
+1-1mlir/test/lib/Conversion/MemRefToLLVM/TestMemRefToLLVMWithTransforms.cpp
+1-1mlir/lib/Dialect/Vector/TransformOps/VectorTransformOps.cpp
+24-158 files not shown
+32-2314 files

LLVM/project 555c7aacross-project-tests/intrinsic-header-tests riscv_packed_simd.c, libc/test/src/__support/printf_core writer_test.cpp

Merge branch 'main' into users/rampitec/block16-strict-disable
DeltaFile
+487-0lldb/source/Plugins/TypeSystem/Fortran/TypeSystemFortran.h
+208-165libc/test/src/__support/printf_core/writer_test.cpp
+309-61llvm/test/Transforms/LoopVectorize/induction-cost.ll
+295-0libc/test/src/stdio/fmemopen_test.cpp
+250-0llvm/test/CodeGen/RISCV/rvp-simd-64.ll
+172-0cross-project-tests/intrinsic-header-tests/riscv_packed_simd.c
+1,721-226163 files not shown
+4,812-855169 files

NetBSD/pkgsrc wuwPe45lang/chicken5 distinfo, lang/chicken5/patches patch-Makefile.bsd

   (lang/chicken5) Drop the chunk, part of patch, which was once thought some mods. necessary
VersionDeltaFile
1.2+2-11lang/chicken5/patches/patch-Makefile.bsd
1.10+2-2lang/chicken5/distinfo
+4-132 files

LLVM/project 50026fdlldb/include/lldb lldb-forward.h, lldb/source/Plugins/TypeSystem CMakeLists.txt

[lldb][Fortran] Add TypeSystemFortran files (#218016)

This PR adds the foundational TypeSystemFortran class. To satisfy the
compiler, it implements all required pure virtual functions from the
base TypeSystem class as stubs (returning nullptr or 0).

Changes:

- Adds the TypeSystemFortran class.
- Provides stub implementations for all inherited pure virtual
functions.

Part of the Add Fortran support to LLDB GSoC 2026 project.

Relates to #109119.
DeltaFile
+487-0lldb/source/Plugins/TypeSystem/Fortran/TypeSystemFortran.h
+63-0lldb/source/Plugins/TypeSystem/Fortran/TypeSystemFortran.cpp
+12-0lldb/source/Plugins/TypeSystem/Fortran/CMakeLists.txt
+1-0lldb/source/Plugins/TypeSystem/CMakeLists.txt
+1-0lldb/include/lldb/lldb-forward.h
+564-05 files

OPNSense/tools c060ab4. Makefile, build common.sh clean.sh

build/pkgbase: preliminary support for OS updates through pkgbase

This is a rough estimate of what is necessary.  Not overly stable
yet, but follows opnsense-update way of doing things by using our
product name and version/revision scheme.  The latest batch is
kept if a previous older (does not detect going back but will assume
it is not) reference was found.

The incremental way has downsides in intermediate builds/reverts
but at least changes can be tracked pretty well.  May also want a
comment as a hash.  Also need to see how stable reproducible builds
are or of this requires a permanent state of /usr/obj and only
incrememtal builds thereafter (would really not be ideal).

Not planning to put this into production any time soon but may live
on the snapshot end for future testing.
DeltaFile
+93-0build/pkgbase.sh
+3-3Makefile
+1-1build/common.sh
+1-1build/clean.sh
+98-54 files

LLVM/project 00b8327mlir/include/mlir/Dialect/Tensor/IR Tensor.h TensorDialect.h, mlir/lib/CAPI/Dialect Tensor.cpp

[mlir][Tensor] Split out the dialect declaration to improve build time (NFC) (#222781)

Move TensorDialect to a self-contained declaration header and use it in
the two consumers that only need the dialect class.

Across three controlled rebuilds of the affected TUs, median
instructions fell from 25.499B to 21.072B (-17.363%) and median wall
time fell from 3.55s to 2.81s (-20.845%).

Assisted-by: Codex
DeltaFile
+16-0mlir/include/mlir/Dialect/Tensor/IR/TensorDialect.h
+1-7mlir/include/mlir/Dialect/Tensor/IR/Tensor.h
+1-1mlir/lib/Conversion/TosaToSCF/TosaToSCFPass.cpp
+1-1mlir/lib/CAPI/Dialect/Tensor.cpp
+19-94 files

Linux/linux aa41659Documentation/hwmon hwmon-kernel-api.rst, drivers/hwmon corsair-cpro.c asus_rog_ryujin.c

Merge tag 'hwmon-for-v7.3-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging

Pull hwmon fixes from Guenter Roeck:

 - Core
     - Fix potential UAF in pec_store
     - Ensure that 'dev' passed to hwmon_notify_event() is a hwmon device
     - Document hwmon_notify_event()

 - applesmc: Fix key backlight workqueue leak on register failure

 - aspeed-pwm-tacho: Propagate reset deassert errors

 - asus_rog_ryujin: HID report fixes

 - chipcap2: Fix channels in humidity alarm notifications

 - corsair-cpro: debugfs fixes


    [42 lines not shown]
DeltaFile
+136-27drivers/hwmon/ina2xx.c
+19-16drivers/hwmon/nct6694-hwmon.c
+19-12drivers/hwmon/hwmon.c
+25-5drivers/hwmon/asus_rog_ryujin.c
+16-8drivers/hwmon/corsair-cpro.c
+15-0Documentation/hwmon/hwmon-kernel-api.rst
+230-6810 files not shown
+267-8416 files

LLVM/project 9a97329mlir/lib/Dialect/Tosa/Transforms TosaProfileCompliance.cpp

[mlir][Tosa] Optimize compliance initialization for size (NFC)

The compliance-map constructor includes a 4,920-line generated initializer.
Mark it minsize because it runs only when creating the validation pass and
optimizing this single large function at -O3 is expensive.

Across five controlled rebuilds of the affected TU, median instructions fell
from 205.087B to 66.157B (-67.742%) and median wall time fell from 19.83s to
7.95s (-59.909%).

Assisted-by: Codex
DeltaFile
+2-1mlir/lib/Dialect/Tosa/Transforms/TosaProfileCompliance.cpp
+2-11 files

LLVM/project ab1321foffload/include device.h, offload/libompaccsupport device.cpp

[offload][omp] Move strict threads & groups computation to libomptarget
DeltaFile
+178-3offload/libompaccsupport/device.cpp
+0-147offload/plugins-nextgen/common/src/PluginInterface.cpp
+9-63offload/plugins-nextgen/common/include/PluginInterface.h
+40-1offload/include/device.h
+9-9offload/test/offloading/ompx_bare_gridsize.c
+1-1offload/test/offloading/ompx_bare_multi_dim.cpp
+237-2242 files not shown
+238-2278 files

LLVM/project cc187d1offload/libompaccsupport PluginManager.cpp

Address review comments
DeltaFile
+11-7offload/libompaccsupport/PluginManager.cpp
+11-71 files

LLVM/project 6a7cfc8clang/include/clang/ScalableStaticAnalysis/Analyses/EntityPointerLevel EntityPointerLevel.h, clang/include/clang/ScalableStaticAnalysis/Analyses/PointerFlow PointerFlowPairs.h

[SSAF][PointerFlow] Drop unused TUSummaryExtractor param from translateDeclPointerLevel

TUSummaryExtractor is only needed to mint EntityIds when building an
EntityPointerLevel; translateDeclPointerLevel just walks the Expr and
returns raw DeclPointerLevels, so it never touched Extractor.

This is the second patch the radar below depends on:
rdar://187125348
DeltaFile
+24-20clang/lib/ScalableStaticAnalysis/Analyses/EntityPointerLevel/EntityPointerLevel.cpp
+2-3clang/include/clang/ScalableStaticAnalysis/Analyses/EntityPointerLevel/EntityPointerLevel.h
+2-2clang/lib/ScalableStaticAnalysis/Analyses/PointerFlow/PointerFlowExtractor.cpp
+2-0clang/include/clang/ScalableStaticAnalysis/Analyses/PointerFlow/PointerFlowPairs.h
+30-254 files

LLVM/project e49955boffload/include device.h, offload/libompaccsupport PluginManager.cpp

[offload][omp] Move reading _kernel_environment to libomptarget
DeltaFile
+57-64offload/plugins-nextgen/common/include/PluginInterface.h
+26-47offload/plugins-nextgen/common/src/PluginInterface.cpp
+66-0offload/libompaccsupport/PluginManager.cpp
+19-0offload/include/device.h
+9-2offload/plugins-nextgen/cuda/src/rtl.cpp
+0-6offload/plugins-nextgen/host/src/rtl.cpp
+177-1193 files not shown
+185-1209 files

LLVM/project b9cb0d5llvm/include/llvm/TargetParser AMDGPUTargetParser.h, llvm/lib/TargetParser AMDGPUTargetParser.cpp

[AMDGPU] Use SIMD-mode terminology for LDS queries

Change-Id: I6d6900868d58374d295126c52f67ffcdd8676902
DeltaFile
+10-9llvm/include/llvm/TargetParser/AMDGPUTargetParser.h
+1-1llvm/lib/TargetParser/AMDGPUTargetParser.cpp
+11-102 files

LLVM/project 98aa2bfllvm/include/llvm/TargetParser AMDGPUTargetParser.h, llvm/lib/Target/AMDGPU GCNSubtarget.cpp

[AMDGPU] Add getLocalMemorySize to TargetParser

Add getLocalMemorySize and getAddressableLocalMemorySize, both taking a
GPUKind or a Triple::SubArchType, so the LDS a work-group gets can be
queried from a GPU name alone without an MCSubtargetInfo. The first
returns the physical block available in the current mode, the second
caps it at what one work-group can address, mirroring the IsaInfo pair.

The number of SIMDs a work-group runs on is a per-kernel mode rather
than a property of the GPU, so it stays a parameter. GCNSubtarget
initializes its cached sizes from the new entry points. There is no
functional change.

Change-Id: Ib71428b66032a231ed491d6294122b359abfe7e2
Co-Authored-By: Claude Opus 5 (1M context) <noreply at anthropic.com>
DeltaFile
+56-0llvm/unittests/TargetParser/TargetParserTest.cpp
+39-3llvm/include/llvm/TargetParser/AMDGPUTargetParser.h
+30-0llvm/lib/TargetParser/AMDGPUTargetParser.cpp
+4-3llvm/lib/Target/AMDGPU/GCNSubtarget.cpp
+129-64 files

LLVM/project 240b921mlir/include/mlir/Dialect/NVGPU/IR NVGPUDialect.h NVGPUDialectDecl.h, mlir/lib RegisterAllDialects.cpp

[mlir][NVGPU] Split out the dialect declaration to improve build time (NFC) (#222767)

Move NVGPUDialect to a self-contained declaration header and use it in
three consumers that do not need generated NVGPU operations.

Median instructions fell from 221.225B to 166.874B (-24.568%) and wall
time from 34.31s to 25.61s (-25.357%).

Assisted-by: Codex
DeltaFile
+20-0mlir/include/mlir/Dialect/NVGPU/IR/NVGPUDialectDecl.h
+1-2mlir/include/mlir/Dialect/NVGPU/IR/NVGPUDialect.h
+1-1mlir/test/lib/Dialect/Vector/TestVectorTransforms.cpp
+1-1mlir/lib/RegisterAllDialects.cpp
+1-1mlir/lib/Dialect/MemRef/TransformOps/MemRefTransformOps.cpp
+24-55 files

LLVM/project 0a9fd31llvm/lib/DebugInfo/DWARF DWARFDie.cpp, llvm/tools/llvm-dwarfdump llvm-dwarfdump.cpp

Address review comments: avoid needless copies
DeltaFile
+6-5llvm/lib/DebugInfo/DWARF/DWARFDie.cpp
+1-1llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
+7-62 files