Paul Gilmartin asked: So, I wonder: If I code:
MVC X+OFFSET,=C'string'
is the implied length as:
MVC X+OFFSET(L'X),=C'string' <-- This one!
or:
MVC X+OFFSET(L'X-OFFSET),=C'string'
Implied lengths are always taken from the first term in the operand. Thus,
the implied length of (X+1) is L'X, while the implied length of (1+X) is
L'1, or 1.
