LLVM/project 199e750mlir/include/mlir/Dialect/SPIRV/IR SPIRVGraphOps.td

[mlir][spirv] Remove ConstantLike trait from spirv.ARM.GraphConstant (#198054)

Operations with the `ConstantLike` trait can always be folded into a
concrete attribute value. However, the `spirv.ARM.GraphConstant` op
cannot be folded, because its GraphConstantID is merely a unique
identifier used to map to the actual constants defined in the SPIR-V
module. Therefore, the `ConstantLike` trait should be removed from
`pirv.ARM.GraphConstant`. Fixes #197970.
DeltaFile
+1-1mlir/include/mlir/Dialect/SPIRV/IR/SPIRVGraphOps.td
+1-11 files

LLVM/project 6ea6d51llvm/tools/llvm-ir2vec/lib Utils.cpp IRUtils.cpp

[llvm-ir2vec] Breaking up llvm-ir2vec lib implementation to clean up MIR deps from ir2vec python bindings (#194414)

The Python bindings only expose IR2Vec functionality. MIR2Vec has no
Python API. However, the single `LLVMEmbUtils` library bundled both
IR2VecTool and MIR2VecTool, causing CodeGen and Target components to be
linked into the nanobind module unnecessarily.

This patch splits the library along that boundary. LLVMIREmbUtils covers
IR2Vec and is linked by both the CLI tool and the Python bindings.
LLVMMIREmbUtils covers MIR2Vec and is linked only by the CLI tool.
Result: Python wheel size reduces from ~14 MB to ~4 MB.
DeltaFile
+0-494llvm/tools/llvm-ir2vec/lib/Utils.cpp
+271-0llvm/tools/llvm-ir2vec/lib/IRUtils.cpp
+236-0llvm/tools/llvm-ir2vec/lib/MIRUtils.cpp
+0-232llvm/tools/llvm-ir2vec/lib/Utils.h
+119-0llvm/tools/llvm-ir2vec/lib/IRUtils.h
+108-0llvm/tools/llvm-ir2vec/lib/MIRUtils.h
+734-7266 files not shown
+818-74612 files

LLVM/project 1ae6f8dllvm/test CMakeLists.txt, llvm/tools/llvm-ir2vec/Bindings requirements.txt

[llvm-ir2vec] Setting up ir2vec python bindings testing for ml-opt bots (#194593)

- ~We are enabling IR2Vec Python binding tests in the LLVM monolithic
Linux CI by adding -D LLVM_IR2VEC_ENABLE_PYTHON_BINDINGS=ON to
monolithic-linux.sh.~

- We're adding testing for ir2vec python bindings with the ml-opt
buildbots. To that end, we need to add pip install requirements, and
other relevant flags to make way for a seamless warning-free llvm build.

The following changes are being done here
- Adding a requirements.txt file, putting out an explicit nanobind
requirement.
- Adding the option for downstream users to test bindings as part of the
`check llvm` umbrella, by passing the appropriate bindings flag
- Suppressing warnings from the nanobind headers, in order to ensure a
seamless llvm cI build
DeltaFile
+4-0llvm/test/CMakeLists.txt
+2-0llvm/tools/llvm-ir2vec/Bindings/requirements.txt
+6-02 files

LLVM/project 81fa937llvm/lib/CodeGen InlineSpiller.cpp

Refactoring based on reviewer suggestion.
DeltaFile
+19-29llvm/lib/CodeGen/InlineSpiller.cpp
+19-291 files

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

[clang-tidy] Fix false positives about reinitialization detection in `bugprone-use-after-move` (#197438)

When calling base class's `operator=` through derived object, a implicit
cast with `UncheckedDerivedToBase` will be generated:
```
void foo() {
  Base b;
  Derived d;
  std::move(d);
  d = b;
}
```
AST for `d = b`'s `d`:  
```
        |-ImplicitCastExpr <col:3> 'GH62206::Base' lvalue <UncheckedDerivedToBase (Base)>
        | `-DeclRefExpr <col:3> 'Derived' lvalue Var 0x1d11a400 'd' 'Derived'
```

This patch considers possible `implicitCastExpr` in the reinit matcher,

    [8 lines not shown]
DeltaFile
+24-0clang-tools-extra/test/clang-tidy/checkers/bugprone/use-after-move.cpp
+2-1clang-tools-extra/clang-tidy/bugprone/UseAfterMoveCheck.cpp
+3-0clang-tools-extra/docs/ReleaseNotes.rst
+29-13 files

LLVM/project 25ad067llvm/lib/CodeGen PHIElimination.cpp, llvm/test/CodeGen/X86 phi-elim-undef-livevars.mir coalescer-copy-from-erasable-implicit-def.ll

[PHIElimination] Clear stale LiveVariables AliveBlocks for undef PHI sources (#197764)

When PHI Elimination lowers a PHI with an undef source (e.g. from an
`IMPLICIT_DEF),` it skips the LiveVariables kill/AliveBlocks update
because the value is undefined. However, the source register's
AliveBlocks may still mark intermediate blocks as live-through from its
definition to the (now eliminated) PHI use. This causes MachineVerifier
failures in EXPENSIVE_CHECKS builds.

Fix by calling `recomputeForSingleDefVirtReg` on undef source registers
when their last PHI use on a CFG edge is eliminated, which correctly
clears the stale AliveBlocks entries.

Fixes the EXPENSIVE_CHECKS failure introduced by #196895.
DeltaFile
+75-0llvm/test/CodeGen/X86/phi-elim-undef-livevars.mir
+8-0llvm/lib/CodeGen/PHIElimination.cpp
+1-1llvm/test/CodeGen/X86/coalescer-copy-from-erasable-implicit-def.ll
+84-13 files

LLVM/project e6566c5clang/lib/Parse ParseOpenACC.cpp, clang/test/ParserOpenACC gh197858.cpp

[OpenACC] Fix invalid using inside of an openacc directive (#198058)

Bug report #197858 comes up with a reproducer where an invalid `using`
declaration checks the Scope it is in, and asserts if it isn't in a
DeclScope. Since all of the important directives that create scopes end
up causing a new scope anyway, this patch adds 'DeclScope' to the parse
scope for an OpenACC directive. This follows the guidance of the OpenMP
directives.

Fixes: #197858
DeltaFile
+10-0clang/test/ParserOpenACC/gh197858.cpp
+3-3clang/lib/Parse/ParseOpenACC.cpp
+13-32 files

LLVM/project 319a501offload/plugins-nextgen/common CMakeLists.txt

[Offload] Fix missing dependency on generated OffloadAPI headers (#198055)

Summary:
These are included in the plugins but not a dependency

Fixes: https://github.com/llvm/llvm-project/issues/196690
DeltaFile
+1-1offload/plugins-nextgen/common/CMakeLists.txt
+1-11 files

LLVM/project 82bc7ddclang/lib/AST/ByteCode Program.cpp Interp.cpp, clang/test/AST/ByteCode records.cpp

[clang][bytecode] Fix wrong 'never produces a constant expression' diagnostic with static data members (#197881)

They can be initialized later, similar to extern variables.
DeltaFile
+8-11clang/lib/AST/ByteCode/Program.cpp
+9-2clang/lib/AST/ByteCode/Interp.cpp
+10-0clang/test/AST/ByteCode/records.cpp
+27-133 files

LLVM/project a140313libc/src/stdlib qsort_data.h

[libc] Make cpp::byte alias-safe (#194171)

Change LIBC_NAMESPACE::cpp::byte from an enum-backed type to unsigned
char so libc’s raw-memory utilities and sorting code can legally access
object representations without violating C++ strict-aliasing rules.
DeltaFile
+15-14libc/src/stdlib/qsort_data.h
+15-141 files

LLVM/project c45cd10llvm/include/llvm/Analysis MemoryBuiltins.h, llvm/include/llvm/IR InstrTypes.h

[MemoryBuiltins] Capture more information for alloc/free from attributes

We now read the `alloc_align` attribute to provide better alignment
information to users. `alloc-family` should be used as well, as
described in the LangRef. Two new helpers provide argument numbers,
rather than values.
DeltaFile
+14-19llvm/lib/Analysis/MemoryBuiltins.cpp
+10-3llvm/lib/IR/Instructions.cpp
+5-0llvm/include/llvm/Analysis/MemoryBuiltins.h
+4-0llvm/include/llvm/IR/InstrTypes.h
+33-224 files

LLVM/project 874420dflang/lib/Optimizer/HLFIR/Transforms OptimizedBufferization.cpp, flang/test/HLFIR opt-bufferization-skip-volatile.fir

[flang] Recognize effects on non-addressable resources in opt-bufferization.

opt-bufferization has been only handling `fir::DebuggingResource`
explicitly. This patch adds support for other non-addressable
resources, such as `fir::VolatileMemoryResource`. This allows
merging elemental/assign for the `volatile_src_nonvolatile_dst`
example in the updated LIT test.
DeltaFile
+115-22flang/lib/Optimizer/HLFIR/Transforms/OptimizedBufferization.cpp
+6-8flang/test/HLFIR/opt-bufferization-skip-volatile.fir
+121-302 files

LLVM/project 88459c7flang/include/flang/Optimizer/Dialect FIROps.td, flang/test/HLFIR opt-bufferization-skip-volatile.fir

[flang] Pass-through fir.volatile_cast in FIR AliasAnalysis.

It should be safe to pass-through `fir.volatile_cast` for the purpose
of alias analysis. The missing pass-through prevented optimization
of the `nonvolatile_src_volatile_dst` test (see updated LIT test).
DeltaFile
+98-4flang/test/HLFIR/opt-bufferization-skip-volatile.fir
+12-1flang/include/flang/Optimizer/Dialect/FIROps.td
+110-52 files

LLVM/project 0320f03libc/lib CMakeLists.txt

[libc] Fix install-libc to work with LLVM_LIBC_FULL_BUILD=OFF (#197366)

Initialize variables that are conditionally set to avoid undefined
references in install-libc and install-libc-stripped targets:

- Initialize added_bitcode_targets to empty string (may be undefined
when LIBC_TARGET_OS_IS_GPU=OFF)
- Initialize startup_target to empty string and only set to
"libc-startup" when both LLVM_LIBC_FULL_BUILD=ON and NOT baremetal
(startup directory is only included in full builds)
- Initialize header_install_target to empty string (may be undefined
when LLVM_LIBC_FULL_BUILD=OFF)
DeltaFile
+4-1libc/lib/CMakeLists.txt
+4-11 files

LLVM/project 88afb5amlir/include/mlir/Interfaces InferIntDivisibilityOpInterface.h, mlir/lib/Analysis/DataFlow IntegerDivisibilityAnalysis.cpp

Revert "[MLIR] Add `IntegerDivisibilityAnalysis` and `InferIntDivisibilityOpInterface`" (#198048)

Reverts llvm/llvm-project#197728

unblock bots: 
https://lab.llvm.org/buildbot/#/builders/226
https://lab.llvm.org/buildbot/#/builders/203
DeltaFile
+0-312mlir/lib/Dialect/Affine/IR/InferIntDivisibilityOpInterfaceImpl.cpp
+0-152mlir/test/Analysis/DataFlow/integer-divisibility.mlir
+0-135mlir/lib/Analysis/DataFlow/IntegerDivisibilityAnalysis.cpp
+0-122mlir/lib/Dialect/Arith/IR/InferIntDivisibilityOpInterfaceImpl.cpp
+0-120mlir/include/mlir/Interfaces/InferIntDivisibilityOpInterface.h
+0-93mlir/test/lib/Analysis/DataFlow/TestIntegerDivisibilityAnalysis.cpp
+0-93413 files not shown
+11-1,09519 files

LLVM/project 3864552llvm/lib/Target/DirectX/DXILWriter DXILBitcodeWriter.cpp, llvm/test/tools/dxil-dis di-subprogram.ll

[DirectX] Do not emit !dbg on function definitions (#197449)

This was not done in LLVM 3.7. Instead, the !DISubprogram contains a
reference to the function (already emitted).
DeltaFile
+4-0llvm/lib/Target/DirectX/DXILWriter/DXILBitcodeWriter.cpp
+2-0llvm/test/tools/dxil-dis/di-subprogram.ll
+6-02 files

LLVM/project a070a15libc/src/string/memory_utils inline_memmove.h inline_memset.h, libc/src/string/memory_utils/generic builtin.h

[libc] Add config option to use memory builtin functions. (#197977)

Add a new CMake and C++ definition configuration option
`LIBC_CONF_USE_MEM_BUILTINS` to allow users to use compiler builtins for
memory utility functions (memcpy, memset, memmove, memcmp, and bcmp)
instead of LLVM libc's internal implementations. Main use-cases are:
- when users want to bring their own memory functions implementations
that are highly optimized for their targets
- improve portability by providing a fallback for targets for which LLVM
libc does not have memory utility implementations yet
- to be used for libc/shared functions and their testings, as we expect
libc/shared functions to provide their own memory functions.
DeltaFile
+14-2libc/src/string/memory_utils/generic/builtin.h
+6-1libc/src/string/memory_utils/inline_memmove.h
+4-1libc/src/string/memory_utils/inline_memset.h
+4-1libc/src/string/memory_utils/inline_memcpy.h
+4-1libc/src/string/memory_utils/inline_memcmp.h
+4-1libc/src/string/memory_utils/inline_bcmp.h
+36-72 files not shown
+44-78 files

LLVM/project a0176fdlldb/include/lldb/Symbol ObjectFile.h, lldb/source/Symbol ObjectFile.cpp

[lldb] Fix data race in ObjectFile::GetSectionList (#197812)

The early `m_sections_up == nullptr` check was performed outside the
module mutex, so two threads sharing the same Module could both enter
the branch and race on the write in CreateSections. Restructure so the
check and populate both happen under the module mutex; this is a
standard double-checked locking fix.

Found by ThreadSanitizer as part of #197792.
DeltaFile
+10-10lldb/source/Symbol/ObjectFile.cpp
+3-0lldb/include/lldb/Symbol/ObjectFile.h
+13-102 files

LLVM/project cc3f8adllvm/test/Transforms/PGOProfile consecutive-zeros.ll, llvm/test/Transforms/PGOProfile/Inputs consecutive-zeros.proftext

PGO] Drop consecutive-zeros.ll test

pgo-memop-opt has previously validated VP metadata and bailed if it runs
into duplicate values in the VP metadata. VP metadata values will soon
be deduplicated at construction, making this no longer necessary, and
will also cause this test to fail, so drop it. Keep the
verification/deduplication pgo-memop-opt for now to avoid leaving main
in a broken state.

Reviewers: mtrofin, ormris

Pull Request: https://github.com/llvm/llvm-project/pull/197615
DeltaFile
+0-58llvm/test/Transforms/PGOProfile/consecutive-zeros.ll
+0-47llvm/test/Transforms/PGOProfile/Inputs/consecutive-zeros.proftext
+0-1052 files

LLVM/project c7a4fb0llvm/test/CodeGen/AMDGPU/GlobalISel sdivrem.ll, llvm/test/CodeGen/Thumb2 mve-clmul.ll

[𝘀𝗽𝗿] changes introduced through rebase

Created using spr 1.3.7

[skip ci]
DeltaFile
+8,633-8,584llvm/test/CodeGen/Thumb2/mve-clmul.ll
+8,195-0llvm/test/MC/AMDGPU/gfx13_asm_vop3.s
+8,182-0llvm/test/MC/AMDGPU/gfx13_asm_vop3-fake16.s
+6,862-0llvm/test/tools/llvm-mca/AArch64/Cortex/C1Nano-sve-instructions.s
+3,436-2,769llvm/test/CodeGen/AMDGPU/GlobalISel/sdivrem.ll
+4,686-918llvm/test/CodeGen/X86/vector-reduce-ctpop.ll
+39,994-12,2714,021 files not shown
+305,249-120,8534,027 files

LLVM/project 26e1238llvm/test/tools/dsymutil/AArch64 typedef-different-types.test

host-byteorder-little-endian derictaive to typedef-different-types.test (#197981)

The test case introduced in
https://github.com/llvm/llvm-project/pull/195749/changes#diff-d9b34bdc428ca5518742902b1226065daa6a89d3fe056e10bc29615b57aa2deb
fails on AIX
(https://lab.llvm.org/staging/#/builders/231/builds/610/steps/6/logs/FAIL__LLVM__typedef-different-types_test)
due to AIX being big endian, add requires directive similar to
https://github.com/llvm/llvm-project/issues/190481
DeltaFile
+2-0llvm/test/tools/dsymutil/AArch64/typedef-different-types.test
+2-01 files

LLVM/project 12e7840llvm/lib/Target/AMDGPU/AsmParser AMDGPUAsmParser.cpp, llvm/test/MC/AMDGPU gfx12_asm_vopd_features.s

[AMDGPU] Fix VOPD assembler validation for GFX12+ (#198034)

The related `codegen` side of this change was already landed by
https://github.com/llvm/llvm-project/commit/c510ee553e2057f94c2f023c72abb3c9afec0962
("[AMDGPU] VOPD: AllowSameVGPR on GFX12"), which changed
`GCNVOPDUtils.cpp` to use `hasGFX12Insts()` instead of
`hasGFX1250Insts()`.
However, the assembler validation in `AMDGPUAsmParser.cpp` was not
updated to match, causing it to reject valid VOPD instruction pairs that
share the same VGPR as src0 on `gfx1200`.
This fix aligns the assembler with the `codegen` by changing
`isGFX1250Plus()` to `isGFX12Plus()` in `checkVOPDRegBankConstraints`,
and adds a positive test case to verify same-VGPR src0 pairs assemble
correctly on `gfx12`.
DeltaFile
+8-0llvm/test/MC/AMDGPU/gfx12_asm_vopd_features.s
+1-1llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
+9-12 files

LLVM/project f6f0c9ellvm/lib/Transforms/IPO Instrumentor.cpp, llvm/test/Instrumentation/Instrumentor call_allocation_deallocation.ll call_flags.ll

[Instrumentor] Add call instrumentation support

We can now instrument call instructions and extract information about
the arguments, (de)allocation, intrinsic kind, etc.
DeltaFile
+403-0llvm/test/Instrumentation/Instrumentor/call_allocation_deallocation.ll
+228-1llvm/lib/Transforms/IPO/Instrumentor.cpp
+139-0llvm/test/Instrumentation/Instrumentor/call_flags.ll
+77-0llvm/test/Instrumentation/Instrumentor/call_filters.ll
+60-0llvm/test/Instrumentation/Instrumentor/call_flags_config.json
+35-25llvm/test/Instrumentation/Instrumentor/alloca_and_function.ll
+942-266 files not shown
+1,128-2912 files

LLVM/project f675972llvm/docs LangRef.rst

[IR] Note that duplicate profile values are illegal in VP metadata

It is not legal to have duplicate VP metadata as it should be merged
appropriately before it actually ends up transcribed into the IR.

I will put up a verifier patch for this to follow this one, but do so
separately in case we need to revert due to detecting actual issues in
the code base.

Reviewers: david-xl, teresajohnson, mtrofin

Pull Request: https://github.com/llvm/llvm-project/pull/193077
DeltaFile
+3-1llvm/docs/LangRef.rst
+3-11 files

LLVM/project 3cb39bdclang/lib/CIR/CodeGen CIRGenBuiltinNVPTX.cpp CIRGenBuiltin.cpp, clang/test/CIR/CodeGenCUDA device-printf.cu

[CIR][CUDA] Support device-side printf for NVPTX (#196573)

Implement device-side printf lowering for NVPTX targets in CIR codegen.
The variadic arguments are packed into a stack-allocated struct and
passed to vprintf, matching the classic codegen behavior in
CGGPUBuiltin.cpp

When the target triple is NVPTX and the builtin is
printf/__builtin_printf, we route to emitNVPTXDevicePrintfCallExpr
The no-varargs case passes a null pointer directly.

AMDGCN device printf remains NYI.
part of https://github.com/llvm/llvm-project/issues/179278
DeltaFile
+103-0clang/lib/CIR/CodeGen/CIRGenBuiltinNVPTX.cpp
+46-0clang/test/CIR/CodeGenCUDA/device-printf.cu
+11-0clang/lib/CIR/CodeGen/CIRGenBuiltin.cpp
+3-0clang/lib/CIR/CodeGen/CIRGenFunction.h
+163-04 files

LLVM/project ba0fef9mlir/include/mlir/Interfaces InferIntDivisibilityOpInterface.h, mlir/lib/Analysis/DataFlow IntegerDivisibilityAnalysis.cpp

[MLIR] Add `IntegerDivisibilityAnalysis` and `InferIntDivisibilityOpInterface` (#197728)

This patch is a port from
https://github.com/iree-org/iree/blob/main/compiler/src/iree/compiler/Dialect/Util/Analysis/IntegerDivisibilityAnalysis.cpp
to upstream

It introduces a dataflow analysis that tracks integer divisibility
(divisor + remainder lattice) for SSA values, plus an op interface
`InferIntDivisibilityOpInterface` for ops to participate.

It adds:
* `IntegerDivisibilityAnalysis` produces a `Divisibility` lattice
`{divisor, remainder}`
* `InferIntDivisibilityOpInterface` interface
* External-model implementations for `arith` and `affine` ops
* `test-int-divisibility` test pass + lit tests

Example:
Here is the usual approach to laod element `i` from `i4` buffer emulated

    [11 lines not shown]
DeltaFile
+312-0mlir/lib/Dialect/Affine/IR/InferIntDivisibilityOpInterfaceImpl.cpp
+152-0mlir/test/Analysis/DataFlow/integer-divisibility.mlir
+135-0mlir/lib/Analysis/DataFlow/IntegerDivisibilityAnalysis.cpp
+122-0mlir/lib/Dialect/Arith/IR/InferIntDivisibilityOpInterfaceImpl.cpp
+120-0mlir/include/mlir/Interfaces/InferIntDivisibilityOpInterface.h
+93-0mlir/test/lib/Analysis/DataFlow/TestIntegerDivisibilityAnalysis.cpp
+934-013 files not shown
+1,095-1119 files

LLVM/project 0f8ad47flang/lib/Lower OpenACC.cpp, flang/test/Lower/OpenACC acc-declare-global-component-not-supported.f90 acc-declare-global-component.f90

[flang][acc] Accept component of global variable in `acc declare` (#197819)

This MR partially extends the current implementation to accept cases of
`acc declare` on a `parent%comp` whenever the `parent` has been `acc
declare`d with the same clause. This is done by generating only the acc
global constructor only for mapping the parent as the child is expected
to be part of parent.

The limitations still remain as a TODO unless it can be proven parent is
mapped. A generic implementation would need either compiler generated
ordering on the global constructors used for mapping or runtime managed
ordering.
DeltaFile
+107-19flang/lib/Lower/OpenACC.cpp
+34-7flang/test/Lower/OpenACC/acc-declare-global-component-not-supported.f90
+38-0flang/test/Lower/OpenACC/acc-declare-global-component.f90
+179-263 files

LLVM/project fac333ellvm/lib/Target/AArch64 AArch64A57FPLoadBalancing.cpp

[AArch64] Do not pass debug insn to liveness analysis (#198021)

Fix another stepBackward location.

Debug instructions must not affect liveness analysis. stepBackward has
an assertion failure on debug instructions after
https://github.com/llvm/llvm-project/pull/193104.

Signed-off-by: John Lu <John.Lu at amd.com>
DeltaFile
+2-1llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp
+2-11 files

LLVM/project ae2d83bllvm/test/tools/llvm-mca/RISCV/SiFiveP800 vlseg-vsseg.s, llvm/test/tools/llvm-mca/RISCV/SiFiveP800/rvv arithmetic.test fp.test

[RISCV][MCA] Use the new infrastructure for SiFive P500 and P800's tests. NFC (#198016)

Some tests -- mostly vector crypto -- are kept for SiFive P800.

NFC.
DeltaFile
+0-4,752llvm/test/tools/llvm-mca/RISCV/SiFiveP800/vlseg-vsseg.s
+4,549-0llvm/test/tools/llvm-mca/RISCV/SiFiveP800/rvv/arithmetic.test
+3,729-0llvm/test/tools/llvm-mca/RISCV/SiFiveP800/rvv/fp.test
+3,149-0llvm/test/tools/llvm-mca/RISCV/SiFiveP800/rvv/vlseg-vsseg.test
+2,901-0llvm/test/tools/llvm-mca/RISCV/SiFiveP800/rvv/bitwise.test
+2,357-0llvm/test/tools/llvm-mca/RISCV/SiFiveP800/rvv/permutation.test
+16,685-4,75253 files not shown
+31,123-10,18259 files

LLVM/project b5406e4flang/test/Lower array-derived.f90 allocatable-runtime.f90

[flang][NFC] Finishing touches on legacy lowering conversion (#197973)

At the beginning of legacy lowering conversion, some tests were
initially converted to emit FIR. After some discussion, it was decided
to revisit those tests and convert them to emit HLFIR. This change
completes that step and should be the final change in removing vestiges
of legacy lowering.

Assisted-by: AI
DeltaFile
+42-66flang/test/Lower/array-derived.f90
+55-52flang/test/Lower/allocatable-runtime.f90
+42-56flang/test/Lower/array-constructor-index.f90
+47-47flang/test/Lower/allocate-source-allocatables.f90
+30-28flang/test/Lower/allocatable-return.f90
+26-26flang/test/Lower/arithmetic-goto.f90
+242-2755 files not shown
+294-31711 files