@@ -46,7 +46,7 @@ class ShiftControl {
46
46
lb_[k++] = shiftDim.LowerBound ();
47
47
if (shiftDim.Extent () != source.GetDimension (j).Extent ()) {
48
48
terminator_.Crash (" %s: on dimension %d, SHIFT= has extent %jd but "
49
- " SOURCE = has extent %jd" ,
49
+ " ARRAY = has extent %jd" ,
50
50
which, k, static_cast <std::intmax_t >(shiftDim.Extent ()),
51
51
static_cast <std::intmax_t >(source.GetDimension (j).Extent ()));
52
52
}
@@ -460,7 +460,7 @@ void RTDEF(Cshift)(Descriptor &result, const Descriptor &source,
460
460
RUNTIME_CHECK (terminator, rank > 1 );
461
461
if (dim < 1 || dim > rank) {
462
462
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);
464
464
}
465
465
ShiftControl shiftControl{shift, terminator, dim};
466
466
shiftControl.Init (source, " CSHIFT" );
@@ -527,7 +527,7 @@ void RTDEF(Eoshift)(Descriptor &result, const Descriptor &source,
527
527
RUNTIME_CHECK (terminator, rank > 1 );
528
528
if (dim < 1 || dim > rank) {
529
529
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);
531
531
}
532
532
std::size_t elementLen{
533
533
AllocateResult (result, source, rank, extent, terminator, " EOSHIFT" )};
@@ -538,7 +538,7 @@ void RTDEF(Eoshift)(Descriptor &result, const Descriptor &source,
538
538
RUNTIME_CHECK (terminator, boundary->type () == source.type ());
539
539
if (boundary->ElementBytes () != elementLen) {
540
540
terminator.Crash (" EOSHIFT: BOUNDARY= has element byte length %zd, but "
541
- " SOURCE = has length %zd" ,
541
+ " ARRAY = has length %zd" ,
542
542
boundary->ElementBytes (), elementLen);
543
543
}
544
544
if (boundaryRank > 0 ) {
@@ -547,7 +547,7 @@ void RTDEF(Eoshift)(Descriptor &result, const Descriptor &source,
547
547
if (j != dim - 1 ) {
548
548
if (boundary->GetDimension (k).Extent () != extent[j]) {
549
549
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 =" ,
551
551
static_cast <std::intmax_t >(boundary->GetDimension (k).Extent ()),
552
552
k + 1 , static_cast <std::intmax_t >(extent[j]));
553
553
}
@@ -611,7 +611,7 @@ void RTDEF(EoshiftVector)(Descriptor &result, const Descriptor &source,
611
611
RUNTIME_CHECK (terminator, boundary->type () == source.type ());
612
612
if (boundary->ElementBytes () != elementLen) {
613
613
terminator.Crash (" EOSHIFT: BOUNDARY= has element byte length %zd but "
614
- " SOURCE = has length %zd" ,
614
+ " ARRAY = has length %zd" ,
615
615
boundary->ElementBytes (), elementLen);
616
616
}
617
617
}
@@ -658,7 +658,7 @@ void RTDEF(Pack)(Descriptor &result, const Descriptor &source,
658
658
RUNTIME_CHECK (terminator, vector->rank () == 1 );
659
659
RUNTIME_CHECK (terminator, source.type () == vector->type ());
660
660
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= "
662
662
" has length %zd" ,
663
663
source.ElementBytes (), vector->ElementBytes ());
664
664
}
0 commit comments