diff --git a/flang/runtime/descriptor-io.h b/flang/runtime/descriptor-io.h --- a/flang/runtime/descriptor-io.h +++ b/flang/runtime/descriptor-io.h @@ -480,7 +480,7 @@ return FormattedDerivedTypeIO(io, descriptor); } } - handler.Crash("DescriptorIO: Bad type code (%d) in descriptor", + handler.Crash("DescriptorIO: bad type code (%d) in descriptor", static_cast(descriptor.type().raw())); return false; } diff --git a/flang/runtime/extrema.cpp b/flang/runtime/extrema.cpp --- a/flang/runtime/extrema.cpp +++ b/flang/runtime/extrema.cpp @@ -176,7 +176,7 @@ break; default: terminator.Crash( - "%s: Bad data type code (%d) for array", intrinsic, x.type().raw()); + "%s: bad data type code (%d) for array", intrinsic, x.type().raw()); } } @@ -262,7 +262,7 @@ break; default: terminator.Crash( - "%s: Bad data type code (%d) for array", intrinsic, x.type().raw()); + "%s: bad data type code (%d) for array", intrinsic, x.type().raw()); } } diff --git a/flang/runtime/findloc.cpp b/flang/runtime/findloc.cpp --- a/flang/runtime/findloc.cpp +++ b/flang/runtime/findloc.cpp @@ -248,7 +248,7 @@ break; default: terminator.Crash( - "FINDLOC: Bad data type code (%d) for array", x.type().raw()); + "FINDLOC: bad data type code (%d) for array", x.type().raw()); } } } // extern "C" @@ -335,7 +335,7 @@ break; default: terminator.Crash( - "FINDLOC: Bad data type code (%d) for array", x.type().raw()); + "FINDLOC: bad data type code (%d) for array", x.type().raw()); } } } // extern "C" diff --git a/flang/runtime/inquiry.cpp b/flang/runtime/inquiry.cpp --- a/flang/runtime/inquiry.cpp +++ b/flang/runtime/inquiry.cpp @@ -23,7 +23,8 @@ const Descriptor &array, int dim, const char *sourceFile, int line) { if (dim < 1 || dim > array.rank()) { Terminator terminator{sourceFile, line}; - terminator.Crash("SIZE: bad DIM=%d", dim); + terminator.Crash( + "SIZE: bad DIM=%d for ARRAY with rank=%d", dim, array.rank()); } const Dimension &dimension{array.GetDimension(dim - 1)}; return static_cast(dimension.LowerBound()); @@ -68,7 +69,8 @@ const Descriptor &array, int dim, const char *sourceFile, int line) { if (dim < 1 || dim > array.rank()) { Terminator terminator{sourceFile, line}; - terminator.Crash("SIZE: bad DIM=%d", dim); + terminator.Crash( + "SIZE: bad DIM=%d for ARRAY with rank=%d", dim, array.rank()); } const Dimension &dimension{array.GetDimension(dim - 1)}; return static_cast(dimension.Extent()); diff --git a/flang/runtime/io-api.cpp b/flang/runtime/io-api.cpp --- a/flang/runtime/io-api.cpp +++ b/flang/runtime/io-api.cpp @@ -564,7 +564,7 @@ unit->SetPosition(pos - 1, handler); return true; } - io.GetIoErrorHandler().Crash("SetPos() on internal unit"); + io.GetIoErrorHandler().Crash("SetPos() called on internal unit"); return false; } @@ -937,7 +937,7 @@ } std::int64_t result{open->unit().unitNumber()}; if (!SetInteger(unit, kind, result)) { - open->SignalError("GetNewUnit(): Bad INTEGER kind(%d) or out-of-range " + open->SignalError("GetNewUnit(): bad INTEGER kind(%d) or out-of-range " "value(%jd) for result", kind, static_cast(result)); } @@ -1209,7 +1209,8 @@ return true; } io.GetIoErrorHandler().SignalError( - "InquireInteger64(): Bad INTEGER kind(%d) or out-of-range value(%jd) " + "InquireInteger64(): bad INTEGER kind(%d) or out-of-range " + "value(%jd) " "for result", kind, static_cast(n)); } diff --git a/flang/runtime/io-stmt.cpp b/flang/runtime/io-stmt.cpp --- a/flang/runtime/io-stmt.cpp +++ b/flang/runtime/io-stmt.cpp @@ -78,7 +78,7 @@ void IoStatementBase::BadInquiryKeywordHashCrash(InquiryKeywordHash inquiry) { char buffer[16]; const char *decode{InquiryKeywordHashDecode(buffer, sizeof buffer, inquiry)}; - Crash("bad InquiryKeywordHash 0x%x (%s)", inquiry, + Crash("Bad InquiryKeywordHash 0x%x (%s)", inquiry, decode ? decode : "(cannot decode)"); } diff --git a/flang/runtime/iostat.cpp b/flang/runtime/iostat.cpp --- a/flang/runtime/iostat.cpp +++ b/flang/runtime/iostat.cpp @@ -30,7 +30,7 @@ case IostatInternalWriteOverrun: return "Internal write overran available records"; case IostatErrorInFormat: - return "Invalid FORMAT"; + return "Bad FORMAT"; case IostatErrorInKeyword: return "Bad keyword argument value"; case IostatEndfileDirect: diff --git a/flang/runtime/random.cpp b/flang/runtime/random.cpp --- a/flang/runtime/random.cpp +++ b/flang/runtime/random.cpp @@ -108,7 +108,7 @@ break; #endif default: - terminator.Crash("RANDOM_NUMBER(): unsupported REAL kind %d", kind); + terminator.Crash("RANDOM_NUMBER(): bad REAL kind %d", kind); } } diff --git a/flang/runtime/reduction-templates.h b/flang/runtime/reduction-templates.h --- a/flang/runtime/reduction-templates.h +++ b/flang/runtime/reduction-templates.h @@ -44,8 +44,8 @@ const Descriptor *mask, ACCUMULATOR &accumulator, const char *intrinsic, Terminator &terminator) { if (dim < 0 || dim > 1) { - terminator.Crash( - "%s: bad DIM=%d for argument with rank %d", intrinsic, dim, x.rank()); + terminator.Crash("%s: bad DIM=%d for ARRAY argument with rank %d", + intrinsic, dim, x.rank()); } SubscriptValue xAt[maxRank]; x.GetLowerBounds(xAt); @@ -166,7 +166,8 @@ TypeCode typeCode) { int xRank{x.rank()}; if (dim < 1 || dim > xRank) { - terminator.Crash("%s: bad DIM=%d for rank %d", intrinsic, dim, xRank); + terminator.Crash( + "%s: bad DIM=%d for ARRAY with rank %d", intrinsic, dim, xRank); } int zeroBasedDim{dim - 1}; SubscriptValue resultExtent[maxRank]; @@ -295,7 +296,7 @@ intrinsic); break; default: - terminator.Crash("%s: invalid type code %d", intrinsic, x.type().raw()); + terminator.Crash("%s: bad type code %d", intrinsic, x.type().raw()); } } diff --git a/flang/runtime/reduction.cpp b/flang/runtime/reduction.cpp --- a/flang/runtime/reduction.cpp +++ b/flang/runtime/reduction.cpp @@ -228,7 +228,7 @@ typename ACCUMULATOR::Type { Terminator terminator{source, line}; if (dim < 0 || dim > 1) { - terminator.Crash("%s: bad DIM=%d", intrinsic, dim); + terminator.Crash("%s: bad DIM=%d for ARRAY with rank=1", intrinsic, dim); } SubscriptValue xAt[maxRank]; x.GetLowerBounds(xAt); diff --git a/flang/runtime/transformational.cpp b/flang/runtime/transformational.cpp --- a/flang/runtime/transformational.cpp +++ b/flang/runtime/transformational.cpp @@ -525,12 +525,15 @@ } mask.GetLowerBounds(maskAt); field.GetLowerBounds(fieldAt); - SubscriptValue vectorLeft{vector.GetDimension(0).Extent()}; + SubscriptValue vectorElements{vector.GetDimension(0).Extent()}; + SubscriptValue vectorLeft{vectorElements}; for (std::size_t n{result.Elements()}; n-- > 0;) { if (IsLogicalElementTrue(mask, maskAt)) { if (vectorLeft-- == 0) { - terminator.Crash("UNPACK: VECTOR= argument has fewer elements than " - "MASK= has .TRUE. entries"); + terminator.Crash( + "UNPACK: VECTOR= argument has fewer elements (%d) than " + "MASK= has .TRUE. entries", + vectorElements); } CopyElement(result, resultAt, vector, &vectorAt, terminator); ++vectorAt; diff --git a/flang/runtime/unit.cpp b/flang/runtime/unit.cpp --- a/flang/runtime/unit.cpp +++ b/flang/runtime/unit.cpp @@ -48,7 +48,7 @@ int unit, const Terminator &terminator) { ExternalFileUnit *file{LookUp(unit)}; if (!file) { - terminator.Crash("Not an open I/O unit number: %d", unit); + terminator.Crash("%d is not an open I/O unit number", unit); } return *file; } @@ -855,7 +855,8 @@ if (access == Access::Direct) { RUNTIME_CHECK(handler, openRecl); if (!directAccessRecWasSet_) { - handler.SignalError("No REC= was specified for a data transfer with ACCESS='DIRECT'"); + handler.SignalError( + "No REC= was specified for a data transfer with ACCESS='DIRECT'"); return false; } }