@@ -46,7 +46,7 @@ class ShiftControl {
4646 lb_[k++] = shiftDim.LowerBound ();
4747 if (shiftDim.Extent () != source.GetDimension (j).Extent ()) {
4848 terminator_.Crash (" %s: on dimension %d, SHIFT= has extent %jd but "
49- " SOURCE = has extent %jd" ,
49+ " ARRAY = has extent %jd" ,
5050 which, k, static_cast <std::intmax_t >(shiftDim.Extent ()),
5151 static_cast <std::intmax_t >(source.GetDimension (j).Extent ()));
5252 }
@@ -460,7 +460,7 @@ void RTDEF(Cshift)(Descriptor &result, const Descriptor &source,
460460 RUNTIME_CHECK (terminator, rank > 1 );
461461 if (dim < 1 || dim > rank) {
462462 terminator.Crash (
463- " CSHIFT: DIM=%d must be >= 1 and <= SOURCE = rank %d" , dim, rank);
463+ " CSHIFT: DIM=%d must be >= 1 and <= ARRAY = rank %d" , dim, rank);
464464 }
465465 ShiftControl shiftControl{shift, terminator, dim};
466466 shiftControl.Init (source, " CSHIFT" );
@@ -527,7 +527,7 @@ void RTDEF(Eoshift)(Descriptor &result, const Descriptor &source,
527527 RUNTIME_CHECK (terminator, rank > 1 );
528528 if (dim < 1 || dim > rank) {
529529 terminator.Crash (
530- " EOSHIFT: DIM=%d must be >= 1 and <= SOURCE = rank %d" , dim, rank);
530+ " EOSHIFT: DIM=%d must be >= 1 and <= ARRAY = rank %d" , dim, rank);
531531 }
532532 std::size_t elementLen{
533533 AllocateResult (result, source, rank, extent, terminator, " EOSHIFT" )};
@@ -538,7 +538,7 @@ void RTDEF(Eoshift)(Descriptor &result, const Descriptor &source,
538538 RUNTIME_CHECK (terminator, boundary->type () == source.type ());
539539 if (boundary->ElementBytes () != elementLen) {
540540 terminator.Crash (" EOSHIFT: BOUNDARY= has element byte length %zd, but "
541- " SOURCE = has length %zd" ,
541+ " ARRAY = has length %zd" ,
542542 boundary->ElementBytes (), elementLen);
543543 }
544544 if (boundaryRank > 0 ) {
@@ -547,7 +547,7 @@ void RTDEF(Eoshift)(Descriptor &result, const Descriptor &source,
547547 if (j != dim - 1 ) {
548548 if (boundary->GetDimension (k).Extent () != extent[j]) {
549549 terminator.Crash (" EOSHIFT: BOUNDARY= has extent %jd on dimension "
550- " %d but must conform with extent %jd of SOURCE =" ,
550+ " %d but must conform with extent %jd of ARRAY =" ,
551551 static_cast <std::intmax_t >(boundary->GetDimension (k).Extent ()),
552552 k + 1 , static_cast <std::intmax_t >(extent[j]));
553553 }
@@ -611,7 +611,7 @@ void RTDEF(EoshiftVector)(Descriptor &result, const Descriptor &source,
611611 RUNTIME_CHECK (terminator, boundary->type () == source.type ());
612612 if (boundary->ElementBytes () != elementLen) {
613613 terminator.Crash (" EOSHIFT: BOUNDARY= has element byte length %zd but "
614- " SOURCE = has length %zd" ,
614+ " ARRAY = has length %zd" ,
615615 boundary->ElementBytes (), elementLen);
616616 }
617617 }
@@ -658,7 +658,7 @@ void RTDEF(Pack)(Descriptor &result, const Descriptor &source,
658658 RUNTIME_CHECK (terminator, vector->rank () == 1 );
659659 RUNTIME_CHECK (terminator, source.type () == vector->type ());
660660 if (source.ElementBytes () != vector->ElementBytes ()) {
661- terminator.Crash (" PACK: SOURCE = has element byte length %zd, but VECTOR= "
661+ terminator.Crash (" PACK: ARRAY = has element byte length %zd, but VECTOR= "
662662 " has length %zd" ,
663663 source.ElementBytes (), vector->ElementBytes ());
664664 }
0 commit comments