FreeBSD/ports a2cc1easecurity/zeek Makefile pkg-plist

security/zeek: Update to 8.0.10

    https://github.com/zeek/zeek/releases/tag/v8.0.10

This release fixes the following vulnerabilities:

 - HIGH: SMB: Chains of AndX messages can crash Zeek

 - HIGH: DNP3: Memory exhaustion via file control (g70v1) fields

 - HIGH: SIP: Memory exhaustion from long request/response paths

 - HIGH: DHCP: Memory exhaustion from retained options after analyzer
   violation

 - HIGH: SMTP: Memory exhaustion from large numbers of rcptto/to/cc/path
   entries

 - HIGH: SMB: DCE/RPC memory exhaustion from fragment state

    [63 lines not shown]
DeltaFile
+3-3security/zeek/distinfo
+4-0security/zeek/pkg-plist
+1-2security/zeek/Makefile
+8-53 files

FreeBSD/ports cbe03aasecurity/vuxml/vuln 2026.xml

security/vuxml: Mark security/zeek < 8.0.10 as vulnerable as per:

    https://github.com/zeek/zeek/releases/tag/v8.0.10

This release fixes the following vulnerabilities:

 - HIGH: SMB: Chains of AndX messages can crash Zeek

 - HIGH: DNP3: Memory exhaustion via file control (g70v1) fields

 - HIGH: SIP: Memory exhaustion from long request/response paths

 - HIGH: DHCP: Memory exhaustion from retained options after analyzer
   violation

 - HIGH: SMTP: Memory exhaustion from large numbers of rcptto/to/cc/path
   entries

 - HIGH: SMB: DCE/RPC memory exhaustion from fragment state

    [46 lines not shown]
DeltaFile
+68-1security/vuxml/vuln/2026.xml
+68-11 files

LLVM/project 077ec54llvm/docs LangRef.md, llvm/lib/IR Verifier.cpp

IR: Validate and document the "target-abi" module flag (#217397)

The "target-abi" module flag is already emitted by clang for RISC-V and
consumed by the RISC-V and LoongArch backends, but it was neither
validated by the IR Verifier nor documented in LangRef. Add a Verifier 
check that the flag's value operand is a non-empty string.

Co-authored-by: Claude (Claude-Opus-4.8) <noreply at anthropic.com>
DeltaFile
+25-0llvm/test/Verifier/module-flags-target-abi.ll
+18-0llvm/docs/LangRef.md
+13-0llvm/test/Assembler/module-flags-target-abi.ll
+6-0llvm/lib/IR/Verifier.cpp
+62-04 files

LLVM/project a1deec9llvm/include/llvm/ADT FoldingSet.h, llvm/lib/Support FoldingSet.cpp

[ADT] Clean up FoldingSet growth (NFC) (#217424)

This patch cleans up hash table growth in FoldingSetBase:

- Remove GrowHashTable, a private 3-line wrapper around GrowBucketCount,
  in favor of calling GrowBucketCount(NumBuckets * 2, Info) directly in
  InsertNode.

- Refactor GrowBucketCount to use the RAII copy-and-swap pattern. Rehash
  nodes into a temporary FoldingSetBase and move-assign it to *this to
  avoid duplicating bucket allocation and deallocation logic.

Assisted-by: Antigravity
DeltaFile
+10-20llvm/lib/Support/FoldingSet.cpp
+0-3llvm/include/llvm/ADT/FoldingSet.h
+10-232 files

Linux/linux 98f21c5drivers/fwctl Kconfig, drivers/fwctl/bnxt main.c

Merge tag 'for-linus-fwctl' of git://git.kernel.org/pub/scm/linux/kernel/git/fwctl/fwctl

Pull fwctl updates from Jason Gunthorpe:

 - Support more commands in bnxt, this completes what they originally
   wanted to do

 - Rust bindings for fwctl. The Nova GPU is expected to use them next
   cycle

* tag 'for-linus-fwctl' of git://git.kernel.org/pub/scm/linux/kernel/git/fwctl/fwctl:
  rust: introduce abstractions for fwctl
  fwctl/bnxt: Add DMA buffer support for HWRM commands
  bnxt_en: Update bnxt firmware spec
DeltaFile
+593-0rust/kernel/fwctl.rs
+585-0include/linux/bnxt/hsi.h
+391-5drivers/fwctl/bnxt/main.c
+17-0rust/helpers/fwctl.c
+12-0drivers/fwctl/Kconfig
+4-0include/uapi/fwctl/bnxt.h
+1,602-54 files not shown
+1,610-610 files

FreeNAS/freenas b031c90tests/unit test_activedirectory_health.py

Fix stale-SID recovery test to match stable/26's call_sync-based restart

PR #19223 (call_sync2 migration) wasn't backported here, so
_recover_ad still restarts idmap via middleware.call_sync, not
call_sync2. Update the test to match, instead of pulling in the
unrelated migration.
DeltaFile
+4-3tests/unit/test_activedirectory_health.py
+4-31 files

FreeBSD/ports 7377f8bdatabases/heidisql Makefile distinfo, databases/heidisql/files patch-source_generic__types.pas patch-source_main.pas

databases/heidisql: Update to 12.21

ChangeLog at:   https://github.com/HeidiSQL/HeidiSQL/releases/tag/v12.21
DeltaFile
+6-6databases/heidisql/files/patch-source_main.pas
+3-3databases/heidisql/files/patch-source_generic__types.pas
+3-3databases/heidisql/distinfo
+1-1databases/heidisql/Makefile
+13-134 files

LLVM/project b562ef5flang/test/Fir/OpenACC acc-declare-ctor-dtor-conversion.fir, mlir/include/mlir/Dialect/OpenACC/Transforms Passes.td

[mlir][acc] Add pass to convert acc declare ctors and dtors to LLVM (#217415)

Adds the `acc-declare-ctor-dtor-conversion` pass which converts
`acc.global_ctor` and `acc.global_dtor` operations into LLVM functions
and registers them in `llvm.mlir.global_ctors` and
`llvm.mlir.global_dtors`.

The pass exposes a `priority` option to control when the generated
functions run relative to other module initializers.

---------

Co-authored-by: Susan Tan <zujunt at nvidia.com>
DeltaFile
+182-0mlir/lib/Dialect/OpenACC/Transforms/ACCDeclareCtorDtorConversion.cpp
+78-0flang/test/Fir/OpenACC/acc-declare-ctor-dtor-conversion.fir
+76-0mlir/test/Dialect/OpenACC/acc-declare-ctor-dtor-conversion.mlir
+25-0mlir/include/mlir/Dialect/OpenACC/Transforms/Passes.td
+2-0mlir/lib/Dialect/OpenACC/Transforms/CMakeLists.txt
+363-05 files

Linux/linux 85e0d1dDocumentation/driver-api vfio.rst, drivers/iommu/iommufd ioas.c selftest.c

Merge tag 'for-linus-iommufd' of git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd

Pull iommufd updates from Jason Gunthorpe:
 "One small feature this cycle, the noiommu mode is useful in
  single-purpose VMs running something like DPDK. It avoids the double
  translation overhead and it seems to be commonly used with some hacks.

  Summary:

   - Formal API for "no iommu" mode in VFIO. iommufd now works in this
     environment and provides page pinning and phyiscal address services
     to userspace. This avoids nasty fragile tricks with mprotect and
     pgmap

   - Fix sykzaller crash racing change_process with map_pages

   - Various skyzkaller/AI fixes for the selftests"

* tag 'for-linus-iommufd' of git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd:

    [13 lines not shown]
DeltaFile
+155-73drivers/iommu/iommufd/device.c
+105-0drivers/iommu/iommufd/hwpt_noiommu.c
+87-2Documentation/driver-api/vfio.rst
+79-1drivers/iommu/iommufd/io_pagetable.c
+40-3drivers/iommu/iommufd/selftest.c
+40-0drivers/iommu/iommufd/ioas.c
+506-7914 files not shown
+686-11620 files

Linux/linux 4994ef0Documentation/devicetree/bindings/iommu ti,omap-iommu.yaml, drivers/iommu rockchip-iommu.c

Merge tag 'iommu-updates-v7.3' of git://git.kernel.org/pub/scm/linux/kernel/git/iommu/linux

Pull iommu updates from Joerg Roedel:
 "ARM SMMUv2:
   - Device-tree binding updates for Qualcomm Eliza, Maili, Shikra and
     IPQ9650 SoCs
   - Add support for Qualcomm SM8450
   - Numerous fixes for lifetime and ordering issues found by Sashiko in
     the Qualcomm driver

  ARM SMMUv3:
   - Fix interrupt type in device-tree binding example for NVIDIA CMDQV
   - Numerous fixes for issues identified by Sashiko in the NVIDIA CMDQV
     driver
   - Work around TLB erratum T264-SMMU-3 on Tegra264 by repeating the
     invalidation sequence
   - Add support for HAFT (hardware access flag in table entries) when
     using SVA
   - Probe for 52-bit addressing with a page size smaller than 64k

    [74 lines not shown]
DeltaFile
+155-69drivers/iommu/arm/arm-smmu-v3/tegra241-cmdqv.c
+149-39drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
+92-62drivers/iommu/intel/iommu.c
+59-58drivers/iommu/rockchip-iommu.c
+114-0Documentation/devicetree/bindings/iommu/ti,omap-iommu.yaml
+72-27drivers/iommu/amd/init.c
+641-25537 files not shown
+1,028-46543 files

LLVM/project 8dc7822llvm/lib/Target/AArch64/GISel AArch64InstructionSelector.cpp

AArch64: Use m_GPtrAdd in selectAddrModeRegisterOffset

Replace the getVRegDef + G_PTR_ADD opcode check and operand accesses with an
m_GPtrAdd match binding the base and offset registers. NFC.

Co-authored-by: Claude (Opus 4.8) <noreply at anthropic.com>
DeltaFile
+5-9llvm/lib/Target/AArch64/GISel/AArch64InstructionSelector.cpp
+5-91 files

FreeNAS/freenas f942089src/middlewared/middlewared/plugins/truenas_connect internal.py, src/middlewared/middlewared/pytest/unit/plugins test_truenas_connect.py

Take precedence for enabled parameter over persisted TNC disabled state  in post-install bootstrap
DeltaFile
+20-0src/middlewared/middlewared/pytest/unit/plugins/test_truenas_connect.py
+3-1src/middlewared/middlewared/plugins/truenas_connect/internal.py
+23-12 files

LLVM/project 1c89e6bllvm/lib/Target/X86/GISel X86InstructionSelector.cpp X86LegalizerInfo.cpp, llvm/test/CodeGen/X86/GlobalISel select-insert-vec256.mir select-insert-vec512.mir

X86/GlobalISel: Use mi_match for implicit-def and constant checks

Also fix some broken tests using IMPLICIT_DEF without a set register
class. Ideally the verifier would check these. Real compiles should
have used G_IMPLICIT_DEF

Co-authored-by: Claude (Opus 4.8) <noreply at anthropic.com>
DeltaFile
+4-4llvm/test/CodeGen/X86/GlobalISel/select-insert-vec512.mir
+5-3llvm/lib/Target/X86/GISel/X86LegalizerInfo.cpp
+2-2llvm/test/CodeGen/X86/GlobalISel/select-insert-vec256.mir
+3-1llvm/lib/Target/X86/GISel/X86InstructionSelector.cpp
+14-104 files

FreeNAS/freenas 3baa90fsrc/middlewared/middlewared/plugins dlm.py

Address review: Run dlm.remote_down's peer poll as a background task

It was blocking the HA connection thread for up to 60s, delaying
reconnect attempts and other disconnect callbacks.
DeltaFile
+46-25src/middlewared/middlewared/plugins/dlm.py
+46-251 files

FreeNAS/freenas 8fd2a01src/middlewared/middlewared/plugins dlm.py, src/middlewared/middlewared/plugins/dlm_ kernel.py

Tolerate transient NTB blips before calling dlm.reset_active

remote_down now polls the DLM port for up to 60 seconds before ejecting
the peer, so short NTB packet loss events don't trigger a spurious
reset_active

Also raise scan_secs from the default 5 to 30 so the kernel DLM itself
doesn't start FORCEUNLOCK recovery during ~20s NTB blips.
DeltaFile
+19-1src/middlewared/middlewared/plugins/dlm.py
+3-0src/middlewared/middlewared/plugins/dlm_/kernel.py
+22-12 files

Linux/linux 7fa7d4cdrivers/md dm-io.c dm-integrity.c, drivers/md/dm-pcache cache_key.c

Merge tag 'for-7.3/dm-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm

Pull device mapper updates from Mikulas Patocka:

 - minor cleanups found by Claude Opus 4.6

 - small cleanups in dm core, dm-cache, dm-switch, dm-inlinecrypt,
   dm-vdo

 - improve validation of metadata in dm-pcache

 - fix resume-vs-remove ioctl race condition

 - fix race condition when issuing table load ioctls concurrently

 - fix dm-raid1 and dm-io, so that they work with unaligned bio vectors

 - dm-integrity: use keyed markers as discard fillers


    [31 lines not shown]
DeltaFile
+89-119drivers/md/dm-ioctl.c
+94-96drivers/md/dm-vdo/indexer/volume-index.c
+138-37drivers/md/dm-integrity.c
+117-11drivers/md/dm-pcache/cache_key.c
+45-51drivers/md/dm-io.c
+32-56drivers/md/dm-vdo/indexer/geometry.c
+515-37042 files not shown
+922-60548 files

LLVM/project 7d30d2bclang/lib/CodeGen CGBlocks.cpp, clang/test/Profile c-mcdc-block.c

[Coverage][MC/DC] Emit MC/DC instrumentation for block bodies (#216313)

GenerateBlockFunction() emits the block body without going through
EmitFunctionBody(), so call maybeCreateMCDCCondBitmap() to allocate a
condition bitmap.
DeltaFile
+18-0clang/test/Profile/c-mcdc-block.c
+1-0clang/lib/CodeGen/CGBlocks.cpp
+19-02 files

LLVM/project 18677d5llvm/include/llvm/CodeGen/GlobalISel MIPatternMatch.h, llvm/lib/Target/AArch64/GISel AArch64PreLegalizerCombiner.cpp

GlobalISel: Add m_GAssertZext matcher and use it in AArch64 combiner

Generalize the G_SEXT_INREG source+immediate matcher into a shared
SrcImmOp_match template and add m_GAssertZext on top of it. Use it in the
AArch64 narrow-UADDO combiner to replace the getVRegDef + G_ASSERT_ZEXT opcode
and immediate checks. NFC.

Co-authored-by: Claude (Opus 4.8) <noreply at anthropic.com>
DeltaFile
+26-11llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
+3-7llvm/lib/Target/AArch64/GISel/AArch64PreLegalizerCombiner.cpp
+29-182 files

Linux/linux faabe2ddrivers/ata pata_pxa.c sata_mv.c, include/linux libata.h

Merge tag 'ata-7.3' of git://git.kernel.org/pub/scm/linux/kernel/git/libata/linux

Pull ata updates from Damien Le Moal:

 - Some code cleanups to rename the function used to identify ZAC
   devices and declare some local functions static (me)

 - Refactoring and improvement of the translation of the SCSI REPORT
   SUPPORTED OPCODES command to allow users access to the entire list of
   supported commands (me)

 - Fix the translation of the WRITE SAME command with UNMAP bit set (DSM
   TRIM) for devices with a sector size larger than 2K and devices that
   support multiple TRIM segments (Niklas)

 - Add support detecting support for and translating the SCSI commands
   related to the storage elements depopulation feature (GET PHYSICAL
   ELEMENT STATUS, REMOVE ELEMENT AND TRUCATE, REMOVE ELEMENT AND MODIFY
   ZONES and RESTORE ELEMENTS AND REBUILD) (me)

    [41 lines not shown]
DeltaFile
+611-105drivers/ata/libata-scsi.c
+50-43include/linux/libata.h
+74-5drivers/ata/libata-core.c
+74-0include/scsi/scsi_proto.h
+10-42drivers/ata/pata_pxa.c
+14-38drivers/ata/sata_mv.c
+833-23314 files not shown
+916-34620 files

LLVM/project 62dc454llvm/include/llvm/CodeGen/GlobalISel MIPatternMatch.h, llvm/lib/Target/RISCV/GISel RISCVInstructionSelector.cpp

RISCV/GlobalISel: Use mi_match for all-ones check

Introduce a new m_AllOnes matcher, like the IR version has

Co-authored-by: Claude (Opus 4.8) <noreply at anthropic.com>
DeltaFile
+10-0llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
+2-6llvm/lib/Target/RISCV/GISel/RISCVInstructionSelector.cpp
+12-62 files

FreeBSD/ports 7a755d3net/rustconn Makefile Makefile.crates, net/rustconn/files patch-cargo-crates_cpal-0.18.1_src_host_mod.rs patch-cargo-crates_cpal-0.18.1_src_host_alsa_mod.rs

net/rustconn: Update to 0.20.4

- Remove all patches (that were valid for the previous version of cpal
  crate)

ChangeLog:      https://github.com/totoshko88/RustConn/releases/tag/v0.20.4
Reported by:    "github-actions[bot]" <notifications at github.com>
DeltaFile
+0-50net/rustconn/files/patch-cargo-crates_cpal-0.18.1_src_host_alsa_mod.rs
+11-11net/rustconn/distinfo
+0-10net/rustconn/files/patch-cargo-crates_cpal-0.18.1_src_host_mod.rs
+4-4net/rustconn/Makefile.crates
+1-1net/rustconn/Makefile
+16-765 files

FreeNAS/freenas 5f93cfesrc/middlewared/middlewared/plugins/apps upgrade.py, src/middlewared/middlewared/pytest/unit/plugins/apps test_upgrade_pull_failure.py

NAS-142191 / 26.0.0-RC.1 / Don't swallow app upgrade failures in upgrade_impl (#19523)

## Problem
`upgrade_impl()` returns from inside a `finally` block, which discards
any exception raised by `app.pull_images_internal`. The `or
app['custom_app']` condition makes that branch unconditional for custom
apps, so a failed `docker compose pull` is reported to the user as a
successful upgrade: the job ends in SUCCESS with "App successfully
upgraded and redeployed" while the real error only lands in
/var/log/app_lifecycle.log.

The wrong status also hides the two steps that get skipped when the pull
raises, both sitting after `compose_action()` in
`pull_images_internal()`: the `clear_update_flag_for_tag` loop and
`app.redeploy`. So the app isn't recreated and the update flag stays
set, which is why the badge comes back.

## Solution
Clearing a stale alert after a partial pull is still worth doing, so the

    [5 lines not shown]
DeltaFile
+48-0src/middlewared/middlewared/pytest/unit/plugins/apps/test_upgrade_pull_failure.py
+9-5src/middlewared/middlewared/plugins/apps/upgrade.py
+57-52 files

LLVM/project 278abf3llvm/include/llvm/CodeGen/GlobalISel MIPatternMatch.h, llvm/lib/Target/AArch64/GISel AArch64GlobalISelUtils.cpp

GlobalISel: Add m_GIntrinsic matcher

Add m_GIntrinsic mirroring the IR version. Introduce some uses
in SPIRV and AArch64, and drop trivial manual match wrappers.
Doesn't attempt to take the next stop of avoiding wip_match_opcode.
Also, it's broken that we're using G_INTRINSIC with generic intrinsics.

Co-authored-by: Claude (Opus 4.8) <noreply at anthropic.com>
DeltaFile
+46-0llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
+12-8llvm/lib/Target/SPIRV/SPIRVCombine.td
+2-15llvm/lib/Target/SPIRV/SPIRVCombinerHelper.cpp
+8-6llvm/lib/Target/AArch64/GISel/AArch64GlobalISelUtils.cpp
+0-2llvm/lib/Target/SPIRV/SPIRVCombinerHelper.h
+68-315 files

LLVM/project a10d7eblldb/source/API SBThread.cpp

[lldb] Use std::unique_lock instead of std::lock_guard in ResumeNewPlan (#217433)

When adopting the TargetAPIMutex returned by exe_ctx.AllowResume(),
using std::lock_guard with std::adopt_lock fails with
-Werror=thread-safety-analysis on newer libc++ toolchains because
lock_guard's adopt_lock constructor requires holding the capability at
the call site. Switching to std::unique_lock matches the other
TargetAPIMutex adoption call sites and provides correct RAII cleanup.
DeltaFile
+1-1lldb/source/API/SBThread.cpp
+1-11 files

LLVM/project d0ab2e9llvm/test/Transforms/SLPVectorizer/X86 cost-size.ll

[SLP] Test for code size costing changes (#217400)

Should vectorize differently based on the costing criteria (don't
currently).

To be used by #217398.
DeltaFile
+70-0llvm/test/Transforms/SLPVectorizer/X86/cost-size.ll
+70-01 files

FreeBSD/ports 4e6a9fctextproc/xfce4-dict-plugin Makefile pkg-plist, textproc/xfce4-dict-plugin/files patch-lib_common.c

textproc/xfce4-dict-plugin: Update to 0.8.10
DeltaFile
+11-0textproc/xfce4-dict-plugin/files/patch-lib_common.c
+3-3textproc/xfce4-dict-plugin/distinfo
+1-1textproc/xfce4-dict-plugin/Makefile
+2-0textproc/xfce4-dict-plugin/pkg-plist
+17-44 files

LLVM/project b89551bllvm/lib/Transforms/Utils SimplifyCFG.cpp, llvm/test/Transforms/SimplifyCFG hoist-sink-swifterror-store.ll constant-bundle-operand.ll

[SimplifyCFG] Check every sinking candidate in canSinkInstructions (#217372)

canReplaceOperandWithVariable() can depend on the operand value (e.g. if
the operand of only some instructions is a swifterror value, or a
constant operand for an operand bundle). Check operands of all
instructions to sink.

Fixes verifier errors after sinking the swifterror examples.

PR: https://github.com/llvm/llvm-project/pull/217372
DeltaFile
+110-0llvm/test/Transforms/SimplifyCFG/constant-bundle-operand.ll
+75-3llvm/test/Transforms/SimplifyCFG/hoist-sink-swifterror-store.ll
+5-2llvm/lib/Transforms/Utils/SimplifyCFG.cpp
+190-53 files

LLVM/project c357f59llvm/docs/tutorial/MyFirstLanguageFrontend LangImpl03.md LangImpl04.md

[docs] Finish MyST migration for tutorial docs (#217160)

Tracking issue: #201242
See the [migration guide] for more information. 

[migration guide]:
https://llvm.org/docs/SphinxQuickstartTemplate.html#markdown-migration-guidelines
This is a stacked PR based on #217158 , which will be a standalone
commit that
renames *.rst -> *.md before this PR lands for history preservation
purposes.

This was prepared with rst2myst plus LLM-assisted cleanup. I paged
through all the generated HTML looking for migration artifacts, and all
of the differences I could find appear to be formatting error
corrections. Please spot check my work and approve if it looks good. You
can use the HTML links below to confirm it renders properly.

-----

    [128 lines not shown]
DeltaFile
+512-520llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.md
+497-508llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.md
+411-426llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.md
+384-396llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.md
+372-383llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl04.md
+302-310llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.md
+2,478-2,54319 files not shown
+3,467-3,59925 files

LLVM/project 91b70c3llvm/docs/tutorial/MyFirstLanguageFrontend LangImpl06.rst LangImpl06.md

[docs] Rename tutorial docs to Markdown (#217158)

Tracking issue: #201242
See the [migration guide] for more information. 

[migration guide]:
https://llvm.org/docs/SphinxQuickstartTemplate.html#markdown-migration-guidelines

This is the initial straight rename commit. It will probably break the
docs build, but it has to be a separate PR for blame preservation
purposes.
DeltaFile
+0-884llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.rst
+884-0llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl07.md
+0-812llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.rst
+812-0llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl05.md
+0-766llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.rst
+766-0llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl06.md
+2,462-2,46244 files not shown
+6,557-6,55750 files

LLVM/project 0ee6610llvm/lib/CodeGen MachineCombiner.cpp

Refactor debug printing in MachineCombiner and remove duplicate preserved analysis
DeltaFile
+4-5llvm/lib/CodeGen/MachineCombiner.cpp
+4-51 files