llvmbot

Results 798 comments of llvmbot

@llvm/pr-subscribers-clang @llvm/pr-subscribers-clang-temporal-safety Author: None (DEBADRIBASAK) Changes This PR adds the implementation for printing missing origin stats for lifetime analysis. **Purpose:** This capability is added to track the expression types with...

@llvm/pr-subscribers-mlir-linalg @llvm/pr-subscribers-mlir Author: Miloš Poletanović (milos1397) Changes Switches the greedy rewrite traversal for the multi-use producer fusion pattern to Top-Down (Pre-Order). The previous Bottom-Up (Post-Order) traversal led to a critical...

@llvm/issue-subscribers-flang-runtime Author: Kelvin Li (kkwli) Reproducer ```fortran integer, allocatable :: a(:) allocate(a(0)) inquire(iolength=iol) a end ``` ``` $ flang-new zero.f90 $ ./a.out fatal Fortran runtime error(/home/kli/zero.f90:3): Bad address for I/O...

@llvm/issue-subscribers-bug Author: Kelvin Li (kkwli) Reproducer ```fortran integer, allocatable :: a(:) allocate(a(0)) inquire(iolength=iol) a end ``` ``` $ flang-new zero.f90 $ ./a.out fatal Fortran runtime error(/home/kli/zero.f90:3): Bad address for I/O...

@llvm/issue-subscribers-flang-ir Author: Kelvin Li (kkwli) Reproducer ```fortran integer, allocatable :: a(:) allocate(a(0)) inquire(iolength=iol) a end ``` ``` $ flang-new zero.f90 $ ./a.out fatal Fortran runtime error(/home/kli/zero.f90:3): Bad address for I/O...

@llvm/pr-subscribers-libcxxabi Author: Will Hawkins (hawkinsw) Changes Implement `ranges::stride_view` in libc++. Migrating to this GitHub from Phabricator (https://reviews.llvm.org/D156924). Closes #105198 --- Patch is 211.42 KiB, truncated to 20.00 KiB below, full...

@llvm/pr-subscribers-clang @llvm/pr-subscribers-coroutines @llvm/pr-subscribers-clang-codegen @llvm/pr-subscribers-clang-modules Author: Oliver Hunt (ojhunt) Changes This is a basic implementation of P2719: "Type-aware allocation and deallocation functions" described at http://wg21.link/P2719 The proposal includes some more details...

@llvm/pr-subscribers-backend-risc-v Author: Craig Topper (topperc) Changes This is needed to provide proper size and offset for the GPRPair subreg indices on RISC-V. The size of a GPR already uses HwMode....