LLVM/project e098135clang/lib/Analysis/FlowSensitive WatchedLiteralsSolver.cpp

[clang][dataflow] Move expensive solver asserts under EXPENSIVE_CHECKS (#205715)

The watched-literal solver has a few invariant checks that run on every
solver iteration in assertion builds. Some of these checks rebuild and
iterate over the watched-literal state. This overhead is usually hidden,
but it becomes dominant for large flow-sensitive analyses.

While testing clang-tidy's `unchecked-optional-access` check on real
world projects (in this case, LLVM itself), we found there are a few
extreme slow analyses caused by this overhead.

| Time    | File                                                |
|---------|-----------------------------------------------------|
| 8235.7s | llvm-project/clang/utils/TableGen/RISCVVEmitter.cpp |
| 8197.2s | llvm-project/clang/lib/Driver/Multilib.cpp          |

(Ran on a machine with Icelake 32cores + 128gb memory)

After moving these asserts to `EXPENSIVE_CHECKS`, the same files

    [13 lines not shown]
DeltaFile
+2-0clang/lib/Analysis/FlowSensitive/WatchedLiteralsSolver.cpp
+2-01 files

LLVM/project 87f7884llvm/lib/Transforms/Scalar NaryReassociate.cpp, llvm/test/Transforms/NaryReassociate nary-gep-zero-sized-element.ll

[NaryReassociate] Fix divide by zero crash in NaryReassociatePass (#202377)

Updates NaryReassociatePass with a safety check to guard against GEPs
into arrays with zero sized element types (eg. [0 x ptr]) to prevent
division by zero.
DeltaFile
+22-0llvm/test/Transforms/NaryReassociate/nary-gep-zero-sized-element.ll
+1-1llvm/lib/Transforms/Scalar/NaryReassociate.cpp
+23-12 files

LLVM/project 0c540b9clang/lib/StaticAnalyzer/Core ExprEngineCallAndReturn.cpp

[analyzer] Fix unjustified early return in processCallExit (#205656)

In `ExprEngine::processCallExit` step 3 may theoretically split the
state because it calls `removeDead`, which activates `LiveSymbols` and
`DeadSymbols` callbacks of various checkers. (However, in practice it is
likely that these checker callbacks never actually split the state -- at
least, no such state splits happen in the LIT tests.)

The nodes produced by `removeDead` are placed in the set `CleanedNodes`;
in theory the different execution paths should be handled in parallel,
independently of each other. However, the loop `for (ExplodedNode *N :
CleanedNodes)` contained an early return statement, which meant that if
the creation of `CEENode` failed for a node `N`, then the subsequent
iterations were skipped altogether.

This commit replaces the `return` with a `continue` to ensure that the
nodes in `CleanedNodes` are handled independently (if there are several
such nodes).


    [6 lines not shown]
DeltaFile
+1-1clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
+1-11 files

LLVM/project 75a2567clang/include/clang/Analysis/Analyses/LifetimeSafety LifetimeSafety.h, clang/lib/Analysis/LifetimeSafety Checker.cpp LifetimeSafety.cpp

[LifetimeSafety] Gate annotation suggestions behind `SuggestAnnotations` opt (#205764)

Annotations suggestions expectedly fire very often and they have
recently shown significant regressions after the
https://github.com/llvm/llvm-project/pull/204045. This now gates the
suggestions behind a dedicated `SuggestAnnotations` option, preventing
unnecessary work when the relevant diagnostics are disabled.
DeltaFile
+20-0clang/lib/Sema/SemaLifetimeSafety.h
+10-4clang/lib/Analysis/LifetimeSafety/Checker.cpp
+6-5clang/lib/Sema/AnalysisBasedWarnings.cpp
+2-5clang/lib/Analysis/LifetimeSafety/LifetimeSafety.cpp
+6-0clang/test/Sema/LifetimeSafety/safety.cpp
+4-0clang/include/clang/Analysis/Analyses/LifetimeSafety/LifetimeSafety.h
+48-141 files not shown
+50-157 files

LLVM/project 3dc2e17llvm/test/CodeGen/AArch64 complex-deinterleaving-reassoc-duplicates.ll

[ComplexDeinterleaving] Add test for duplicate reassoc addends (NFC) (#205794)
DeltaFile
+37-0llvm/test/CodeGen/AArch64/complex-deinterleaving-reassoc-duplicates.ll
+37-01 files

LLVM/project 07097a5llvm/lib/Transforms/Vectorize VPlanPatternMatch.h VPlanUtils.cpp

[VPlan] Allow VPValue in match_fn without needing explicit template arguments. NFC (#205748)

Currently if you want to use match_fn over a range of VPValues, you have
to explicitly write `match_fn<VPValue>` otherwise it will resolve to the
VPUser overload.

This changes the functor to be a lambda with an auto argument so
match_fn(...) works for both VPValues and VPUsers without explicit
templates. The lambda is inlined so there's no indirect function call.
vputils::getGEPFlagsForPtr is updated to use the new form.

We can't use `bind_back` since it requires we bind to exactly one
function that's known at call time.
DeltaFile
+6-11llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h
+1-2llvm/lib/Transforms/Vectorize/VPlanUtils.cpp
+7-132 files

FreeBSD/ports b38e634shells/zsh pkg-plist distinfo, shells/zsh/files patch-Src_jobs.c patch-Src_Builtins_rlimits.c

shells/zsh: update to 5.9.1

While here switch from pcre to pcre2
Add a patch to support new RLIMITS_PIPEBUF[1] and RLIMITS_VMS
Remove patch which has been upstreamed

PR:             282487 [1]
Submitted by:   Martin Birgmeier <d8zNeCFG at aon.at> [1]
DeltaFile
+35-6shells/zsh/pkg-plist
+0-30shells/zsh/files/patch-Src_jobs.c
+17-0shells/zsh/files/patch-Src_Builtins_rlimits.c
+10-0shells/zsh/files/patch-Doc_Zsh_builtins.yo
+10-0shells/zsh/files/patch-Src_signals.c
+5-5shells/zsh/distinfo
+77-411 files not shown
+79-447 files

FreeBSD/ports 0bdf318. UPDATING

UPDATING: simplify py311->py312 rename with pkg set -p

Replace the shell loop with a single pkg set -p -n command.
DeltaFile
+1-2UPDATING
+1-21 files

LLVM/project 65907e9llvm/include/llvm/IR InstrTypes.h, llvm/lib/Transforms/InstCombine InstCombineCalls.cpp InstructionCombining.cpp

Revert "Reapply "[InstCombine] Merge consecutive assumes", round 2 (#205773)"

This reverts commit 2c1d884c47b03e35283639f7122499ded8986b2b.
DeltaFile
+14-22llvm/test/Transforms/InstCombine/assume.ll
+3-19llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
+0-6llvm/include/llvm/IR/InstrTypes.h
+2-1llvm/test/Transforms/InstCombine/assume-loop-align.ll
+2-1llvm/test/Transforms/PhaseOrdering/AArch64/std-find.ll
+1-1llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
+22-506 files

NetBSD/pkgsrc-wip 307f137llama.cpp distinfo PLIST, py-gguf distinfo

llama.cpp*: update to today's snapshot

While here, make sure that version number is available for
'--version'.
DeltaFile
+6-6llama.cpp/distinfo
+3-3llama.cpp/PLIST
+3-3py-llama-cpp-scripts/distinfo
+3-3py-gguf/distinfo
+6-0llama.cpp/Makefile
+5-1llama.cpp/Makefile.common
+26-166 files

FreeBSD/ports cb16237math/form distinfo Makefile

math/form: Update to 5.0.1
DeltaFile
+3-3math/form/distinfo
+1-1math/form/Makefile
+4-42 files

LLVM/project 1f84b4acompiler-rt/lib/tysan tysan_interceptors.cpp tysan.cpp, compiler-rt/test/tysan memcpy_doesnt_change_shadow.c global.c

[TySan] Remove incorrect memcpy shadow memory tracking (#199958)

Fixes the false positive in
https://github.com/llvm/llvm-project/issues/122934

memcpy is allowed to bypass strict aliasing rules (see
https://en.cppreference.com/c/string/byte/memcpy) so we shouldn't alter
shadow memory when it is used
DeltaFile
+25-0compiler-rt/test/tysan/memcpy_doesnt_change_shadow.c
+3-11compiler-rt/test/tysan/global.c
+0-13compiler-rt/lib/tysan/tysan_interceptors.cpp
+0-2compiler-rt/lib/tysan/tysan.cpp
+28-264 files

FreeNAS/freenas 2aeec8esrc/middlewared/middlewared/plugins/security update.py validate.py

Convert system.security to the typesafe pattern

## Context
`system.security` (FIPS / STIG / local-account password policy) was still an old dict-based `ConfigService`. This converts it to the typesafe pattern: a lean `GenericConfigService[SystemSecurityEntry]` delegating to a `ConfigServicePart`, with `config()`/`do_update()` returning Pydantic models and same-process callers moved to `call2`/`call_sync2`.

## Solution
- **Service split.** The lean service lives in `plugins/security/__init__.py`; the datastore model and all `do_update` HA/FIPS/STIG logic move to `config.py`; validation and STIG/FIPS/HA-reboot helpers become plain `ServiceContext` functions in `validate.py`/`stig.py`. The `system.security.info` and `system.security.sessions` plain services become children created on the parent (the sessions class was renamed from the duplicate `SystemSecurityInfoService` to `SystemSecuritySessionsService`). `update.py` is removed and the service is registered in `main.py`.
- **API models.** Added `SystemSecurityUpdate` and decoupled the legacy `@single_argument_args` update args into the standard split (wire shape unchanged).
- **Consumers.** Since `config()` now returns a model, every in-process consumer was fixed on both axes — dict access switched to attribute access, and string `system.security.*` calls switched to `call2`/`call_sync2` — across `account`, `api_key`, `auth.twofactor`, `system.general`, `smb`/`passdb`, `account.privilege`, `zettarepl`, three alert sources, and the etc renderers (nine pam/limits/shadow mako templates plus `audit_setup.py`/`fips.py`/`nginx`). Helpers typed `: dict` (e.g. `sync_account_policy`, `shadow_parse_aging`, `generate_smb_conf_dict`) are fed `.model_dump()`. `configure_stig`/`configure_fips` stay registered `@private` stubs because `failover.call_remote` and the config-upload hook reach them by name.
- Added `plugins/security/` to `mypy.yml` and `truenas_pam_session` to the mypy override list.
DeltaFile
+0-427src/middlewared/middlewared/plugins/security/update.py
+224-0src/middlewared/middlewared/plugins/security/validate.py
+101-0src/middlewared/middlewared/plugins/security/config.py
+80-0src/middlewared/middlewared/plugins/security/stig.py
+74-0src/middlewared/middlewared/plugins/security/__init__.py
+24-6src/middlewared/middlewared/plugins/security/sessions.py
+503-43333 files not shown
+600-51539 files

LLVM/project d3bb0callvm/docs ProgrammersManual.rst, llvm/test/CodeGen/AMDGPU sched-handleMoveUp-dead-def-join.mir

Merge branch 'main' into users/c8ef/atomic_minmax
DeltaFile
+12,991-3,310llvm/test/MC/AMDGPU/gfx13_asm_vop3_dpp16.s
+11,856-3,719llvm/test/MC/AMDGPU/gfx12_asm_vop3_dpp16.s
+0-8,306llvm/test/MC/Disassembler/AMDGPU/gfx12_dasm_vop3_dpp16.txt
+5,672-0llvm/test/MC/Disassembler/AMDGPU/gfx12_dasm_vop3_dpp16-fake.txt
+5,126-0llvm/test/CodeGen/AMDGPU/sched-handleMoveUp-dead-def-join.mir
+0-4,257llvm/docs/ProgrammersManual.rst
+35,645-19,5924,357 files not shown
+185,020-135,2234,363 files

LLVM/project c07bc29llvm/test/Transforms/ArgumentPromotion noipa.ll, llvm/test/Transforms/GlobalOpt resolve-fmv-ifunc-noipa.ll global-constructor-noipa.ll

[Attr] Add `noipa` function attribute (#203304)

This adds a `noipa` function attribute to LLVM IR. This new attribute
disables any interprocedural analysis that inspects the definition of
the function. Setting this attribute is equivalent to moving the
function definition to a separate, optimizer-opaque, module.

The `noipa` attribute does *not* control inlining or outlining. Add the
`noinline` and `nooutline` attributes as well in cases where inlining
and outlining should additionally be disabled.

Revival of https://reviews.llvm.org/D101011
Discussed in https://discourse.llvm.org/t/noipa-continues/74411

LLVM portion of https://github.com/llvm/llvm-project/issues/40819
DeltaFile
+76-0llvm/test/Transforms/GlobalOpt/resolve-fmv-ifunc-noipa.ll
+53-0llvm/test/Transforms/MergeFunc/noipa.ll
+36-0llvm/test/Transforms/GlobalOpt/global-constructor-noipa.ll
+30-0llvm/test/Transforms/WholeProgramDevirt/vcp-noipa.ll
+29-0llvm/test/Transforms/GlobalOpt/resolve-static-ifunc-noipa.ll
+27-0llvm/test/Transforms/ArgumentPromotion/noipa.ll
+251-026 files not shown
+453-732 files

LLVM/project 94ae3ddclang-tools-extra/clangd/unittests SymbolDocumentationTests.cpp HoverTests.cpp, clang/lib/AST CommentSema.cpp CommentParser.cpp

[clangd] Fix unknown doxygen command parsing in parameter documentation (#202121)

This patch mainly fixes a bug with parsing of unknown doxygen commands
in function parameter documentation.

To extract the parameter documentation from the function documentation,
the whole function documentation is parsed first.
Then the documentation paragraph for the requested parameter is
"converted" to a string and stored as the documentation for the
parameter. The string is converted by visiting and dumping all chunks of
the parsed paragraph.

When unknown doxygen commands are parsed (during the function
documentation parsing step), they are registered in a
`clang::comments::CommandTraits` object.
Visiting the unknown command requires to query the registered commands
through the `clang::comments::CommandTraits` object to get the command
name.


    [18 lines not shown]
DeltaFile
+100-0clang-tools-extra/clangd/unittests/SymbolDocumentationTests.cpp
+66-0clang-tools-extra/clangd/unittests/HoverTests.cpp
+54-0clang-tools-extra/clangd/unittests/CodeCompletionStringsTests.cpp
+36-4clang/unittests/AST/CommentLexer.cpp
+11-9clang/lib/AST/CommentSema.cpp
+11-8clang/lib/AST/CommentParser.cpp
+278-218 files not shown
+321-6014 files

FreeNAS/freenas ffaa1d2src/middlewared/middlewared/plugins/zfs_ pool.py

dont swallow errors in zfs.pool.query
DeltaFile
+10-1src/middlewared/middlewared/plugins/zfs_/pool.py
+10-11 files

LLVM/project 5314be5mlir/lib/Conversion/RaiseWasm RaiseWasmMLIR.cpp, mlir/test/Conversion/RaiseWasm wasm-div-to-arith-div.mlir wasm-convert-to-arith-tofp.mlir

[MLIR][WASM] Re-Introduce the RaiseWasmMLIRPass to convert WasmSSA MLIR to core dialects (#205483)

See the previous PR here:
https://github.com/llvm/llvm-project/pull/164562

It was reverted by @lforg37 because of some build bot issue: see
https://github.com/llvm/llvm-project/pull/164562#issuecomment-4756828598.

However, after checking on my end, I could not reproduce the buildbot
issue. Seeing that the problem triggered in `flang` which is completely
unrelated to this work, I assume that it was a builder or a flaky test
problem so I'm re-opening this PR as it had been initially merged.

---------

Signed-off-by: Ferdinand Lemaire <flemairen6 at gmail.com>
Co-authored-by: Ferdinand Lemaire <ferdinand.lemaire at woven-planet.global>
Co-authored-by: Ferdinand Lemaire <flemairen6 at gmail.com>
DeltaFile
+469-0mlir/lib/Conversion/RaiseWasm/RaiseWasmMLIR.cpp
+109-0mlir/test/Conversion/RaiseWasm/wasm-div-to-arith-div.mlir
+81-0mlir/test/Conversion/RaiseWasm/wasm-convert-to-arith-tofp.mlir
+80-0mlir/test/Conversion/RaiseWasm/wasm-sub-to-arith-sub.mlir
+79-0mlir/test/Conversion/RaiseWasm/wasm-add-to-arith-add.mlir
+78-0mlir/test/Conversion/RaiseWasm/wasm-mul-to-arith-mul.mlir
+896-034 files not shown
+1,868-140 files

LLVM/project 4e0108cllvm/utils amdgpu-pin-default-subtarget.py amdgpu-pin-default-subtarget-batch.sh

utils/AMDGPU: Add scripts to update tests using default subtarget

Add vibe coded scripts to migrate AMDGPU codegen tests that run llc
without a -mcpu argument. This should either be uncommitted or delete
after the migration is completed.

amdgpu-pin-default-subtarget.py adds an explicit -mcpu matching the current
default for the triple's OS (amdhsa defaults to gfx700, all others to
gfx600). The blank default subtarget is a featureless generic that does not
match any explicit -mcpu, so pinning changes codegen; the batch driver
amdgpu-pin-default-subtarget-batch.sh regenerates the autogenerated CHECK
lines and reverts anything that still fails.

Co-Authored-By: Claude <noreply at anthropic.com> (Claude-Opus-4.8)
DeltaFile
+92-0llvm/utils/amdgpu-pin-default-subtarget.py
+64-0llvm/utils/amdgpu-pin-default-subtarget-batch.sh
+156-02 files

LLVM/project d9e53b2clang/test/CodeGen amdgpu-feature-builtins-invalid-use.cpp, clang/test/SemaCXX amdgpu-feature-builtins-invalid-use.cpp

clang: Move __builtin_amdgcn_processor_is diagnostic test to sema (#205734)

This wasn't checking the codegen result, so move it to the right place
and use -verify instead of FileChecking stderr.

Co-authored-by: Claude (Opus 4.8) <noreply at anthropic.com>
DeltaFile
+50-0clang/test/SemaCXX/amdgpu-feature-builtins-invalid-use.cpp
+0-48clang/test/CodeGen/amdgpu-feature-builtins-invalid-use.cpp
+50-482 files

LLVM/project 3ff82c7llvm/include/llvm/Support CHERICapabilityFormat.h, llvm/lib/Support CHERICapabilityFormat.cpp

[Support][CHERI] Refactor CHERICapabilityFormatBase to embrace CRTP (#205623)

Currently CHERICapabilityFormatBase does not provide a definition for
getAlignmentMask, but does provide a declaration, which leads to
warnings when building with MSVC. We want to have an abstract base here
without any dynamic dispatch, which is what CRTP is for, so use it for
getAlignmentMask such that the base can provide a definition that uses
each derived type's implementation, just as the two base wrappers were
already doing when calling getAlignmentMask. Whilst doing this we might
as well move the wrappers to the header so they can be inlined (and now
that getAlignmentMask is defined we can use it in the helpers rather
than needing each of them to explicitly use the derived type).

Fixes: 7dc09d0d3cf1 ("[CHERI] Add a Support utility for determining
alignment requirements of CHERI capabilities. (#197402)")
DeltaFile
+19-5llvm/include/llvm/Support/CHERICapabilityFormat.h
+3-17llvm/lib/Support/CHERICapabilityFormat.cpp
+22-222 files

NetBSD/pkgsrc s3VogC9doc CHANGES-2026

   Updated devel/py-setuptools_scm, devel/py-hypothesis
VersionDeltaFile
1.4007+3-1doc/CHANGES-2026
+3-11 files

NetBSD/pkgsrc ca0fo9Vdevel/py-hypothesis distinfo Makefile

   py-hypothesis: updated to 6.155.7

   6.155.7 - 2026-06-21
   This patch fixes a thread-safety bug where concurrent use of the same strategy instance could error in rare cases.

   6.155.6 - 2026-06-19
   This patch replaces some internal %-style string formatting with f-strings. There is no user-visible change.

   6.155.5 - 2026-06-18
   dates() now raises InvalidArgument if a datetime is passed as min_value or max_value. Because datetime is a subclass of date, such bounds were previously accepted and then failed with a confusing TypeError while generating examples.

   6.155.4 - 2026-06-18
   This patch removes a stray print() which fired whenever a dates() filter was rewritten.
VersionDeltaFile
1.166+4-4devel/py-hypothesis/distinfo
1.172+2-2devel/py-hypothesis/Makefile
+6-62 files

NetBSD/pkgsrc gRIJrnmdevel/py-setuptools_scm distinfo Makefile

   py-setuptools_scm: updated to 10.2.0

   10.2.0 (2026-06-24)

   Added
   - Restore Python 3.8 and 3.9 support, re-enabling use as a build dependency for projects like scikit-build that still support these versions.

   Miscellaneous
   - Move PKG-INFO discovery tests from vcs-versioning to setuptools-scm where the entry points are registered.
VersionDeltaFile
1.43+4-4devel/py-setuptools_scm/distinfo
1.52+2-2devel/py-setuptools_scm/Makefile
+6-62 files

LLVM/project 850462ellvm/test/CodeGen/AMDGPU/GlobalISel udiv.i64.ll urem.i64.ll

AMDGPU: Avoid default subtarget in codegen tests (4/9)

Continue migrating targets away from codegenning the dummy target
by script.

Co-Authored-By: Claude <noreply at anthropic.com> (Claude-Opus-4.8)
DeltaFile
+1,410-1,359llvm/test/CodeGen/AMDGPU/GlobalISel/udiv.i64.ll
+1,351-1,351llvm/test/CodeGen/AMDGPU/GlobalISel/urem.i64.ll
+442-429llvm/test/CodeGen/AMDGPU/GlobalISel/sdiv.i32.ll
+408-393llvm/test/CodeGen/AMDGPU/GlobalISel/srem.i32.ll
+174-174llvm/test/CodeGen/AMDGPU/GlobalISel/udiv.i32.ll
+167-167llvm/test/CodeGen/AMDGPU/GlobalISel/urem.i32.ll
+3,952-3,87389 files not shown
+4,226-4,16495 files

LLVM/project 7e2a762llvm/test/CodeGen/AMDGPU wave_dispatch_regs.ll zext-lid.ll

AMDGPU: Avoid default subtarget in hand-written codegen tests (8/9)

Introduce the missing -mcpu argument to some tests which are not
autogenerated.

Co-Authored-By: Claude <noreply at anthropic.com> (Claude-Opus-4.8)
DeltaFile
+2-2llvm/test/CodeGen/AMDGPU/wave_dispatch_regs.ll
+2-2llvm/test/CodeGen/AMDGPU/zext-lid.ll
+1-1llvm/test/CodeGen/AMDGPU/zext-i64-bit-operand.ll
+1-1llvm/test/CodeGen/AMDGPU/vop-shrink.ll
+1-1llvm/test/CodeGen/AMDGPU/waitcnt-no-redundant.mir
+1-1llvm/test/CodeGen/AMDGPU/waitcnt-trailing.mir
+8-86 files

LLVM/project e5e3c81llvm/test/CodeGen/AMDGPU llvm.amdgcn.unreachable.ll indirect-private-64.ll

AMDGPU: Avoid default subtarget in hand-written codegen tests (6/9)

Introduce -mcpu arguments in tests which didn't require check line
updates.

Co-Authored-By: Claude <noreply at anthropic.com> (Claude-Opus-4.8)
DeltaFile
+4-4llvm/test/CodeGen/AMDGPU/llvm.amdgcn.unreachable.ll
+3-3llvm/test/CodeGen/AMDGPU/indirect-private-64.ll
+3-3llvm/test/CodeGen/AMDGPU/llc-pipeline-npm.ll
+2-2llvm/test/CodeGen/AMDGPU/llvm.amdgcn.dispatch.id.ll
+2-2llvm/test/CodeGen/AMDGPU/implicit-def-muse.ll
+2-2llvm/test/CodeGen/AMDGPU/llvm.dbg.value.ll
+16-1694 files not shown
+116-116100 files

LLVM/project 250a0fellvm/test/CodeGen/AMDGPU use-sgpr-multiple-times.ll gep-address-space.ll

AMDGPU: Avoid default subtarget in hand-written codegen tests (9/9)

Fix some manual test checks using amdgcn triples without -mcpu. These require the
most careful consideration. The highest impact changes are the optimizations
removing execz branch now that there's a sched model.
DeltaFile
+6-14llvm/test/CodeGen/AMDGPU/use-sgpr-multiple-times.ll
+6-10llvm/test/CodeGen/AMDGPU/gep-address-space.ll
+7-7llvm/test/CodeGen/AMDGPU/setcc.ll
+4-6llvm/test/CodeGen/AMDGPU/si-lower-control-flow-unreachable-block.ll
+4-4llvm/test/CodeGen/AMDGPU/multi-divergent-exit-region.ll
+3-3llvm/test/CodeGen/AMDGPU/schedule-amdgpu-trackers.ll
+30-441 files not shown
+32-467 files

LLVM/project 5176131llvm/test/CodeGen/AMDGPU trap.ll ran-out-of-registers-errors.ll

AMDGPU: Avoid default subtarget in hand-written codegen tests (7/9)

Introduce an -mcpu argument to tests missing it to avoid codegening
the default dummy target. These are cases that didn't require adjusting
the check lines.

Co-Authored-By: Claude <noreply at anthropic.com> (Claude-Opus-4.8)
DeltaFile
+18-18llvm/test/CodeGen/AMDGPU/trap.ll
+5-5llvm/test/CodeGen/AMDGPU/ran-out-of-registers-errors.ll
+4-4llvm/test/CodeGen/AMDGPU/set-wave-priority.ll
+2-2llvm/test/CodeGen/AMDGPU/subreg-intervals.mir
+2-2llvm/test/CodeGen/AMDGPU/stack-size-overflow.ll
+2-2llvm/test/CodeGen/AMDGPU/rename-independent-subregs-mac-operands.mir
+33-3394 files not shown
+142-142100 files

LLVM/project e64c5f7llvm/test/CodeGen/AMDGPU call-graph-register-usage.ll debug_frame.ll

AMDGPU: Avoid default subtarget in hand-written codegen tests (5/9)

Introduce -mcpu arguments in tests that did not need check line updates.

Co-Authored-By: Claude <noreply at anthropic.com> (Claude-Opus-4.8)
DeltaFile
+6-6llvm/test/CodeGen/AMDGPU/call-graph-register-usage.ll
+4-4llvm/test/CodeGen/AMDGPU/debug_frame.ll
+3-3llvm/test/CodeGen/AMDGPU/elf.ll
+3-3llvm/test/CodeGen/AMDGPU/eh_frame.ll
+3-3llvm/test/CodeGen/AMDGPU/amdgpu-function-calls-option.ll
+3-3llvm/test/CodeGen/AMDGPU/force-alwaysinline-lds-global-address-codegen.ll
+22-2294 files not shown
+137-137100 files