summaryrefslogtreecommitdiff
path: root/clang/test/CIR/CodeGen/array-dtor.cpp
AgeCommit message (Collapse)Author
2025-10-06[CIR] Clean up ptr_stride assembly format (#162138)Henrich Lauko
This mirrors changes from https://github.com/llvm/clangir/pull/1933
2025-10-01[CIR] Refactor cir.cast to use uniform assembly form w/o parens, commas ↵Henrich Lauko
(#161431) This mirrors incubator changes from https://github.com/llvm/clangir/pull/1922
2025-09-19[CIR] Fix structors for multidimensional arrrays (#159820)Morris Hafner
This patchs implements array constructors and destructors for multidimensional arrays. This works by bitcasting the pointer to the first element to a one-dimensional array type of the same extent before lowering to a loop.
2025-07-29[CIR] Add support for array cleanups (#150499)Andy Kaylor
This adds support for array cleanups, including the ArrayDtor op.