[flang-commits] [mlir] [flang] [openmp] [Flang][OpenMP] Initial mapping of Fortran pointers and allocatables for target devices (PR #71766)
via flang-commits
flang-commits at lists.llvm.org
Wed Dec 6 03:47:00 PST 2023
================
@@ -330,6 +330,13 @@ bool isAllocatableOrPointerArray(mlir::Type ty) {
return false;
}
+bool isTypeWithDescriptor(mlir::Type ty) {
+ if (fir::isPointerType(ty) || fir::isAllocatableType(ty) ||
----------------
agozillon wrote:
Thank you, I'll utilise the isa!
https://github.com/llvm/llvm-project/pull/71766
More information about the flang-commits
mailing list