[llvm-branch-commits] [flang][runtime] Enable PRINT of integer32 for device. (PR #85182)
Peter Klausler via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu Mar 14 08:53:35 PDT 2024
================
@@ -368,7 +368,12 @@ static bool FormattedDerivedTypeIO(IoStatementState &io,
++j, descriptor.IncrementSubscripts(subscripts)) {
Fortran::common::optional<bool> result;
if (special) {
+#if !defined(RT_DEVICE_COMPILATION)
result = DefinedFormattedIo(io, descriptor, *type, *special, subscripts);
+#else
+ io.GetIoErrorHandler().Crash("not implemented yet: defined formatted IO");
----------------
klausler wrote:
"... from the device"
https://github.com/llvm/llvm-project/pull/85182
More information about the llvm-branch-commits
mailing list