[llvm] [flang-rt] Added IsContiguousUpTo runtime function. (PR #131048)
Slava Zakharin via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 08:41:07 PDT 2025
================
@@ -19,6 +19,10 @@ bool RTDEF(IsContiguous)(const Descriptor &descriptor) {
return descriptor.IsContiguous();
}
+bool RTDEF(IsContiguousUpTo)(const Descriptor &descriptor, char dim) {
----------------
vzakhari wrote:
It should not exceed the `maxRank`, so I thought `char` would be enough. Would you prefer `int`/`unsigned`?
https://github.com/llvm/llvm-project/pull/131048
More information about the llvm-commits
mailing list