LLVM/project 24154a5lld/test/COFF lto-libcall-archive-bitcode.test, lld/test/ELF/lto libcall-archive-bitcode.test

Revert "Reland "[LTO][LLD] Prevent invalid LTO libfunc transforms (#164916)"" (#192741)

Reverts llvm/llvm-project#190642

A bisect shows this as the change leading to the link failure at
https://g-issues.fuchsia.dev/issues/503377901
DeltaFile
+19-52llvm/lib/LTO/LTO.cpp
+0-56lld/test/wasm/lto/libcall-archive-bitcode.ll
+0-54lld/test/ELF/lto/libcall-archive-bitcode.test
+0-51lld/test/COFF/lto-libcall-archive-bitcode.test
+0-35llvm/test/LTO/Resolution/X86/libcall-in-thin-link.ll
+7-27llvm/lib/LTO/LTOBackend.cpp
+26-27519 files not shown
+52-48825 files

LLVM/project 12a9996clang-tools-extra/clang-tidy/bugprone UseAfterMoveCheck.cpp, clang-tools-extra/docs ReleaseNotes.rst

[clang-tidy] Prevent false-positive in presence of derived-to-base cast in bugprone.use-after-move (#189638)

The following scenario is quite common, but was reported as a
use-after-move:

```cpp
struct Base {
  Base(Base&&);
};

struct C : Base {
    int field;
    C(C&& c) :
      Base(std::move(c)),  // << only moves through the base type
      field(c.field) // << this is a valid use-after-move
      {}
};
```

Fix this by checking field origin when the moved value is immediately
cast to base.
DeltaFile
+56-39clang-tools-extra/clang-tidy/bugprone/UseAfterMoveCheck.cpp
+38-0clang-tools-extra/test/clang-tidy/checkers/bugprone/use-after-move-derived-to-base.cpp
+3-0clang-tools-extra/docs/ReleaseNotes.rst
+97-393 files

LLVM/project 913141ellvm/lib/Target/AArch64/GISel AArch64LegalizerInfo.cpp AArch64LegalizerInfo.h, llvm/test/CodeGen/AArch64 vec-combine-compare-to-bitmask.ll arm64-zip.ll

[AArch64][GlobalISel] Fix nonterminating legalization for <8 x s4> vectors. (#192747)

G_CONCAT_VECTORS with <16 x s4> sources hits the bitcast legalization
path, which round-trips through scalar types (e.g. s32) and regenerates
<8 x s4> vectors via G_UNMERGE_VALUES and G_BUILD_VECTOR. The
G_BUILD_VECTOR is then widened to <8 x s8> (via .minScalarOrElt(0, s8)),
producing G_ANYEXT/G_TRUNC artifact pairs. The artifact combiner folds
these pairs away, restoring the original <8 x s4> types, which feeds
back into G_CONCAT_VECTORS again.

This change:
 * Adds .minScalarOrElt(1, s8) to the G_ICMP rules to ensure operand
vector elements are at least s8. This causes <16 x s4> operands to be
widened
to <16 x s8>, and the result type follows via minScalarEltSameAs.

* Add custom legalization for G_CONCAT_VECTORS when element size < 8.
The custom handler widens source operands via G_ANYEXT (e.g.
<8 x s4> -> <8 x s8>), concats the widened vectors (producing a

    [6 lines not shown]
DeltaFile
+143-43llvm/test/CodeGen/AArch64/vec-combine-compare-to-bitmask.ll
+137-40llvm/test/CodeGen/AArch64/arm64-zip.ll
+35-0llvm/lib/Target/AArch64/GISel/AArch64LegalizerInfo.cpp
+2-0llvm/lib/Target/AArch64/GISel/AArch64LegalizerInfo.h
+0-1llvm/test/CodeGen/AArch64/dup.ll
+317-845 files

LLVM/project 8298ddalld/test/COFF lto-libcall-archive-bitcode.test, lld/test/ELF/lto libcall-archive-bitcode.test

Revert "Reland "[LTO][LLD] Prevent invalid LTO libfunc transforms (#164916)" …"

This reverts commit fecf609998340a5a2c27346468beba67e58afcc2.
DeltaFile
+19-52llvm/lib/LTO/LTO.cpp
+0-56lld/test/wasm/lto/libcall-archive-bitcode.ll
+0-54lld/test/ELF/lto/libcall-archive-bitcode.test
+0-51lld/test/COFF/lto-libcall-archive-bitcode.test
+0-35llvm/test/LTO/Resolution/X86/libcall-in-thin-link.ll
+7-27llvm/lib/LTO/LTOBackend.cpp
+26-27519 files not shown
+52-48825 files

LLVM/project bfdf30aflang/include/flang/Optimizer/Support InternalNames.h, flang/lib/Optimizer/Support InternalNames.cpp

[flang] NameUniquer helper for detecting module-scope data (#192733)

Add NameUniquer::isModuleScopeDataUniquedName to detect uniqued names
for module-scope data (variables, named constants, and common blocks),
excluding procedures and other prefixed symbols.
DeltaFile
+23-0flang/lib/Optimizer/Support/InternalNames.cpp
+5-0flang/include/flang/Optimizer/Support/InternalNames.h
+28-02 files

LLVM/project efbd4e5llvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

Rebase

Created using spr 1.3.7
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-03,178 files not shown
+1,049,146-83,5933,184 files

LLVM/project 8758917flang/include/flang/Optimizer/Transforms Passes.td, flang/lib/Optimizer/Transforms/CUDA CUFDeviceGlobal.cpp

[flang][cuda] Add option to preserve global with no use for debug info (#192731)
DeltaFile
+18-10flang/lib/Optimizer/Transforms/CUDA/CUFDeviceGlobal.cpp
+26-0flang/test/Fir/CUDA/cuda-device-global-preserve.f90
+5-0flang/include/flang/Optimizer/Transforms/Passes.td
+0-1flang/test/Fir/CUDA/cuda-device-global.f90
+49-114 files

LLVM/project ce1631allvm/lib/Transforms/InstCombine InstCombineCalls.cpp, llvm/test/Transforms/InstCombine fold-vp-load.ll

[InstCombine] Fold bitcast into vp.load (#192173)

Similar to normal loads, we should be able to fold bitcast into
`vp.load` if (1) mask is all-ones (2) either the new vector type has a
larger known minimum length than that of the original vector, or you
need to make sure the original EVL can be exact divided by the
decreasing factor (of the known minimum length).

This patch adds such folding pattern, though it only support cases where
the new vector type has a larger known minimum length.
DeltaFile
+73-0llvm/test/Transforms/InstCombine/fold-vp-load.ll
+41-0llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
+114-02 files

LLVM/project 5b938b8clang/include/clang/CIR MissingFeatures.h, clang/lib/CIR/CodeGen CIRGenItaniumCXXABI.cpp

[CIR] Fix typeinfo linkage and comdat (#192721)

We weren't properly setting the linkage on typeinfo objects, leading to
multiple definition linking error when typeinfo for a class was
referenced in multiple source files. We had the correct linkage
available in the buildTypeInfo function, but we weren't doing anything
with it. This also prevented us from hitting the diagnostic saying that
we should have set the comdat attribute for the typeinfo. This change
fixes both of those problems.
DeltaFile
+54-48clang/test/CIR/CodeGenCXX/vtable-linkage.cpp
+3-5clang/lib/CIR/CodeGen/CIRGenItaniumCXXABI.cpp
+4-4clang/test/CIR/CodeGen/rtti-member-pointer.cpp
+2-2clang/test/CIR/CodeGen/rtti-qualfn.cpp
+0-1clang/include/clang/CIR/MissingFeatures.h
+63-605 files

LLVM/project 2733bc5llvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

Address comments

Created using spr 1.3.7
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-01,135 files not shown
+839,972-15,3361,141 files

LLVM/project 184edc1llvm/lib/Passes PassBuilderPipelines.cpp, llvm/test/Other new-pm-defaults.ll new-pm-thinlto-postlink-samplepgo-defaults.ll

Revert "[JTS][Passes] Enable JTS By Default" (#192737)

Reverts llvm/llvm-project#190674

Causes an assertion failure when doing a multi-stage PGO build.

https://lab.llvm.org/buildbot/#/builders/113/builds/12349
DeltaFile
+5-1llvm/test/Other/new-pm-defaults.ll
+2-2llvm/lib/Passes/PassBuilderPipelines.cpp
+0-1llvm/test/Other/new-pm-thinlto-postlink-samplepgo-defaults.ll
+0-1llvm/test/Other/new-pm-thinlto-postlink-defaults.ll
+0-1llvm/test/Other/new-pm-thinlto-postlink-pgo-defaults.ll
+0-1llvm/test/Other/new-pm-thinlto-prelink-defaults.ll
+7-72 files not shown
+7-98 files

LLVM/project 0f4b9a7llvm/lib/CodeGen/SelectionDAG DAGCombiner.cpp, llvm/test/CodeGen/AArch64 pr86717.ll

[DAGCombiner] Fold `sub nuw C, x` -> `xor x, C` when C is a mask (#192692)

fixes : https://github.com/llvm/llvm-project/issues/86874

Alive proof: https://alive2.llvm.org/ce/z/YKCPCA
DeltaFile
+72-0llvm/test/CodeGen/X86/sub-to-xor-masked.ll
+8-3llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+5-6llvm/test/CodeGen/AArch64/pr86717.ll
+3-6llvm/test/CodeGen/RISCV/pr84200.ll
+88-154 files

LLVM/project a3292e8lldb/packages/Python/lldbsuite/test/make mach_thread.h, lldb/test/API/functionalities/thread/thread_exit main.cpp

[lldb] Fix TestThreadExit.py flakiness (#190976)

When `pthread_join` returns, the target thread signals its internal
semaphore, but the underlying Mach thread hasn't been removed from the
task yet with `thread_terminate`.

The flakiness is the result of the debugger stopping the process halts
the dying thread mid-termination. There is no Mach API to distinguish a
dying thread from a live one: it appears as `TH_STATE_STOPPED`, like any
other suspended thread.

This PR adds a helper (`wait_for_thread_cleanup`) that polls
`task_threads` to ensure the Mach thread is actually gone before the
breakpoint. Since there might be other tests that are affected by this
race, I put it in a common location so it can be reused.
DeltaFile
+39-39lldb/test/API/functionalities/thread/thread_exit/main.cpp
+42-0lldb/packages/Python/lldbsuite/test/make/mach_thread.h
+81-392 files

LLVM/project fc2d08cllvm/lib/Transforms/IPO LowerTypeTests.cpp, llvm/test/Transforms/LowerTypeTests x86-jumptable.ll aarch64-jumptable.ll

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+160-9llvm/test/Transforms/LowerTypeTests/x86-jumptable.ll
+64-8llvm/test/Transforms/LowerTypeTests/aarch64-jumptable.ll
+41-0llvm/lib/Transforms/IPO/LowerTypeTests.cpp
+265-173 files

LLVM/project 1d7deb7llvm/lib/Transforms/IPO LowerTypeTests.cpp, llvm/test/Transforms/LowerTypeTests x86-jumptable.ll aarch64-jumptable.ll

[𝘀𝗽𝗿] changes to main this commit is based on

Created using spr 1.3.7

[skip ci]
DeltaFile
+146-9llvm/test/Transforms/LowerTypeTests/x86-jumptable.ll
+57-8llvm/test/Transforms/LowerTypeTests/aarch64-jumptable.ll
+6-0llvm/lib/Transforms/IPO/LowerTypeTests.cpp
+209-173 files

LLVM/project 5e408a2llvm/lib/Transforms/IPO LowerTypeTests.cpp, llvm/test/Transforms/LowerTypeTests x86-jumptable.ll aarch64-jumptable.ll

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+146-9llvm/test/Transforms/LowerTypeTests/x86-jumptable.ll
+57-8llvm/test/Transforms/LowerTypeTests/aarch64-jumptable.ll
+6-0llvm/lib/Transforms/IPO/LowerTypeTests.cpp
+209-173 files

LLVM/project efe77b2llvm/test/Transforms/LowerTypeTests x86-jumptable.ll aarch64-jumptable.ll

[𝘀𝗽𝗿] changes to main this commit is based on

Created using spr 1.3.7

[skip ci]
DeltaFile
+74-9llvm/test/Transforms/LowerTypeTests/x86-jumptable.ll
+20-8llvm/test/Transforms/LowerTypeTests/aarch64-jumptable.ll
+94-172 files

LLVM/project 2208b2allvm/test/Transforms/LowerTypeTests x86-jumptable.ll aarch64-jumptable.ll

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+74-9llvm/test/Transforms/LowerTypeTests/x86-jumptable.ll
+20-8llvm/test/Transforms/LowerTypeTests/aarch64-jumptable.ll
+94-172 files

LLVM/project dcc8644llvm/lib/Target/AArch64 AArch64.h AArch64PassRegistry.def, llvm/lib/Target/AArch64/GISel AArch64PostSelectOptimize.cpp

[NewPM] Adds a port for AArch64PostSelectOptimize (#192599)

Standard porting with updated tests.

Note: Removed unused dep on TargetPassConfig for legacy pass.
DeltaFile
+43-35llvm/lib/Target/AArch64/GISel/AArch64PostSelectOptimize.cpp
+8-1llvm/lib/Target/AArch64/AArch64.h
+2-0llvm/lib/Target/AArch64/AArch64PassRegistry.def
+1-1llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
+1-0llvm/test/CodeGen/AArch64/GlobalISel/postselectopt-dead-cc-defs-in-fcmp.mir
+1-0llvm/test/CodeGen/AArch64/GlobalISel/postselectopt-constrain-new-regop.mir
+56-372 files not shown
+58-378 files

LLVM/project 891b9e5llvm/lib/Transforms/Vectorize SLPVectorizer.cpp, llvm/test/Transforms/SLPVectorizer/AArch64 getelementptr.ll

Address comments

Created using spr 1.3.7
DeltaFile
+16-6llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+15-3llvm/test/Transforms/SLPVectorizer/AArch64/getelementptr.ll
+31-92 files

LLVM/project 4b33816llvm/lib/Transforms/Vectorize SLPVectorizer.cpp, llvm/test/Transforms/SLPVectorizer/AArch64 getelementptr.ll

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+45-0llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+12-18llvm/test/Transforms/SLPVectorizer/X86/minimum-sizes.ll
+3-15llvm/test/Transforms/SLPVectorizer/AArch64/getelementptr.ll
+60-333 files

LLVM/project ee82ab9llvm/lib/Passes PassBuilderPipelines.cpp, llvm/test/Other new-pm-defaults.ll new-pm-thinlto-prelink-samplepgo-defaults.ll

[JTS][Passes] Enable JTS By Default (#190674)

Now that the compile-time issues have been fixed (#190092) and given
that was the last known blocker for enabling this pass, try enabling it
by default again.

Previous attempts at enablement are in
https://github.com/llvm/llvm-project/pull/82546 and
https://github.com/llvm/llvm-project/pull/83229 which were
reverted/never landed due to causing compile time explosions in
std::variant heavy code such as flang with old libstdc++ versions.


https://llvm-compile-time-tracker.com/compare.php?from=2aa4100fa710ed83c5acd7505c27b4498f727c8e&to=4d80149901a224a90505c3b30192dab20cca5358&stat=instructions:u

Compile time looks like it should just be noise.
DeltaFile
+1-5llvm/test/Other/new-pm-defaults.ll
+2-2llvm/lib/Passes/PassBuilderPipelines.cpp
+1-0llvm/test/Other/new-pm-thinlto-prelink-samplepgo-defaults.ll
+1-0llvm/test/Other/new-pm-thinlto-postlink-samplepgo-defaults.ll
+1-0llvm/test/Other/new-pm-thinlto-postlink-defaults.ll
+1-0llvm/test/Other/new-pm-thinlto-postlink-pgo-defaults.ll
+7-72 files not shown
+9-78 files

LLVM/project 59a509allvm/docs LFI.rst

[LFI][Doc] Update documentation for planned features (#192128)

This PR updates the LFI documentation to be a little less
AArch64-specific in anticipation of x86-64 support. I've also updated
the planned names for the `no-lfi-stores`/`no-lfi-loads` features, and
updated the planned rewrite sequence for `x30` modifications to make it
more PAC-compatible for when we include support for that.
DeltaFile
+96-94llvm/docs/LFI.rst
+96-941 files

LLVM/project 8e424e3llvm/lib/Target/RISCV RISCVISelDAGToDAG.cpp, llvm/test/CodeGen/RISCV rv64p.ll

[RISCV] Support emitting plui.h for i32 constants on RV64. (#192534)

If the constant was originally i32, it will be sign or zero
extended to i64 during type legalization. If we can prove the
upper bits aren't used we can duplicate the lower bits to allow
RISCVMatInt to select plui.h.
DeltaFile
+21-0llvm/test/CodeGen/RISCV/rv64p.ll
+6-4llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
+27-42 files

LLVM/project bf10fc8llvm/utils/lit/tests filter-failed-delete.py filter-failed-rerun.py

[lit] Fix tests when run via symlinks (#192530)

If the path to Inputs/filter-failed was a symlink, it would copy the
symlinks, and then edit the same files, leading to flaky failures if the
tests ran in parallel.
DeltaFile
+1-1llvm/utils/lit/tests/filter-failed-delete.py
+1-1llvm/utils/lit/tests/filter-failed-rerun.py
+1-1llvm/utils/lit/tests/filter-failed.py
+3-33 files

LLVM/project 6c3d84cllvm/include/llvm/Transforms/Utils ValueMapper.h, llvm/lib/Linker IRMover.cpp

[ThinLTO] Drop !inline_history metadata when importing functions (#192564)

In #190876 we now have functions in ValueAsMetadata (!inline_history
metadata). This has caused undefined symbol linker errors in some
ThinLTO builds. The following is what's going on:

@f in module A is getting imported from module A to module B, and it has
a call with !inline_history pointing to @g in module A, so a declaration
for @g is also imported into module B. But @g gets internalized in
module A, causing the undefined symbol error at link time due to
memprof's ICP in module B creating a call to @g since we can ICP a call
to any declaration.

To avoid pulling in a function declaration that may be wrong, simply
drop !inline_history metadata when importing functions. They aren't
necessary for correctness, they only prevent inlining explosion in some
recursive edge cases. Worst case is we do another round of inlining
through mutually recursive functions and then stop again due to newly
added !inline_history metadata, which should be fine; the inlining
explosion typically happens because we keep inlining through mutually
recursive functions.
DeltaFile
+21-0llvm/test/Transforms/FunctionImport/inline-history.ll
+11-0llvm/test/Transforms/FunctionImport/Inputs/inline-history.ll
+6-0llvm/lib/Transforms/Utils/ValueMapper.cpp
+4-0llvm/include/llvm/Transforms/Utils/ValueMapper.h
+3-1llvm/lib/Linker/IRMover.cpp
+45-15 files

LLVM/project f58cd92clang/include/clang/ScalableStaticAnalysisFramework/Analyses/PointerFlow PointerFlowFormat.h, clang/lib/ScalableStaticAnalysisFramework/Analyses/PointerFlow PointerFlowAnalysis.cpp PointerFlow.cpp

[SSAF][WPA] Add no-op PointerFlow and UnsafeBufferUsage analysis

We need no-op PointerFlow and UnsafeBufferUsage analyses for the
analysis that depends on their summary data.

Refactored PointerFlow and UnsafeBufferUsage serialization for code
sharing.

rdar://174874942
DeltaFile
+134-0clang/lib/ScalableStaticAnalysisFramework/Analyses/UnsafeBufferUsage/UnsafeBufferUsageAnalysis.cpp
+128-0clang/lib/ScalableStaticAnalysisFramework/Analyses/PointerFlow/PointerFlowAnalysis.cpp
+128-0clang/test/Analysis/Scalable/PointerFlow/Inputs/wpa-result.json
+54-41clang/lib/ScalableStaticAnalysisFramework/Analyses/PointerFlow/PointerFlow.cpp
+86-0clang/test/Analysis/Scalable/UnsafeBufferUsage/Inputs/wpa-result.json
+35-0clang/include/clang/ScalableStaticAnalysisFramework/Analyses/PointerFlow/PointerFlowFormat.h
+565-4122 files not shown
+896-8028 files

LLVM/project 37a8c71lldb/source/Commands CommandObjectDisassemble.cpp, lldb/source/Interpreter CommandReturnObject.cpp CommandInterpreter.cpp

[lldb] Assert lack of trailing period or newlines in diagnostics (#191447)

This PR adds an assert to `CommandReturnObject::{AppendNote,
AppendWarning}` to ensure the diagnostics don't end with a newline,
which is added by the function, or a period, which goes against the
coding standards.

I added a little helper that asserts in assert-enabled builds and trim
the diagnostic otherwise. I know that goes against the notion that
"asserts are preconditions" and therefore you shouldn't handle the case
where they don't hold (something I generally advocate for) but I think
we should prioritize a consistent user experience over purity.

We should do the same thing for `AppendError`, but currently there are
still too many violations that need to be cleaned up and if the compiler
emits non-compliant diagnostics, we may not be able to do this at all.
DeltaFile
+22-0lldb/source/Interpreter/CommandReturnObject.cpp
+5-10lldb/source/Interpreter/CommandInterpreter.cpp
+6-6lldb/test/Shell/Commands/command-disassemble-process.yaml
+4-4lldb/test/Shell/Commands/command-disassemble.s
+3-3lldb/test/Shell/Commands/command-list-reach-end-of-file.test
+2-2lldb/source/Commands/CommandObjectDisassemble.cpp
+42-256 files not shown
+50-3312 files

LLVM/project 3b45641llvm/lib/Target/AArch64 AArch64.h AArch64PassRegistry.def, llvm/lib/Target/AArch64/GISel AArch64PostLegalizerLowering.cpp

[NewPM] Adds a port for AArch64PostLegalizerLowering (#190718)

Standard porting (extraction into a helper function shared across legacy
and new PM passes).

Dropped unused include `TargetPassConfig.h`
DeltaFile
+64-28llvm/lib/Target/AArch64/GISel/AArch64PostLegalizerLowering.cpp
+21-1llvm/lib/Target/AArch64/AArch64.h
+2-0llvm/lib/Target/AArch64/AArch64PassRegistry.def
+1-1llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
+1-0llvm/test/CodeGen/AArch64/GlobalISel/postlegalizer-lowering-uzp.mir
+1-0llvm/test/CodeGen/AArch64/GlobalISel/postlegalizer-lowering-zip.mir
+90-303 files not shown
+93-309 files

LLVM/project faf63e9flang/test/Lower/PowerPC ppc-vec-sel.f90 ppc-vec-shift.f90

[flang][PPC] Remove -flang-experimental-hlfir flag in ppc vector tests (NFC) (#192715)
DeltaFile
+2-2flang/test/Lower/PowerPC/ppc-vec-sel.f90
+2-2flang/test/Lower/PowerPC/ppc-vec-shift.f90
+2-2flang/test/Lower/PowerPC/ppc-vec-cmp.f90
+2-2flang/test/Lower/PowerPC/ppc-vec-perm.f90
+2-2flang/test/Lower/PowerPC/ppc-vec-shift-be-le.f90
+1-1flang/test/Lower/PowerPC/ppc-vector-types.f90
+11-1115 files not shown
+26-2621 files