[llvm] [flang-rt] Added IsContiguousUpTo runtime function. (PR #131048)
Peter Klausler via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 08:44:22 PDT 2025
================
@@ -19,6 +19,10 @@ bool RTDEF(IsContiguous)(const Descriptor &descriptor) {
return descriptor.IsContiguous();
}
+bool RTDEF(IsContiguousUpTo)(const Descriptor &descriptor, char dim) {
----------------
klausler wrote:
`int`. Don't use `char` unless it's a character, and don't use `unsigned` when it just means `int` that I hope is not negative.
https://github.com/llvm/llvm-project/pull/131048
More information about the llvm-commits
mailing list