MPE/iX Error Messages Manual Vol 3 (32650-90880)
164 Chapter4
Error Messages Viii C 3
Symbolic Debugger
CAUSE Operand of &, $addr, or addr operator is marked as a
constant or register type.
ACTION Use the \t display format to find the type of the object
being displayed.
UE360 MESSAGE POSTFIX "++" NOT SUPPORTED
POSTFIX "--" NOT SUPPORTED
PREFIX "++" NOT SUPPORTED
PREFIX "--" NOT SUPPORTED
CAUSE An attempt was made to use an unsupported operator. For
example, ++n, --n, n++, n--.
ACTION Make sure a space is used between a + or - operator and a
unary sign (for example 2- -5). +=1 or -=1 can be used to
increment or decrement, respectively.
UE361 MESSAGE INVALID COMBINATION OF OPERATOR AND OPERANDS
CAUSE The debugger tried to perform a numeric operation on one
or more non-numeric operands.
ACTION Re-enter the command with a valid expression.
UE362 MESSAGE UNKNOWN OPERATOR (NUM)
CAUSE An unsupported operator, with internal value NUM, was
pushed on the operator stack.
ACTION Re-enter the command using an operator known to the
current language or reset $lang to the language in which
the operator is valid.
UE363 MESSAGE MISFORMED EXPRESSION
CAUSE An expression was entered incorrectly. The debugger
attempts to show you where the error was detected in the
command line. The error token might be one token beyond
the actual error.
ACTION Re-enter the expression using operators and operands
known to the current language or reset $lang to the
language in which the operator or operand is valid.
UE364 MESSAGE TWO OPERATORS IN A ROW
CAUSE The expression handler detected an improper construct in
an expression.
ACTION Re-enter the command with a valid expression.
UE365 MESSAGE FORTRAN VARIABLE NOT PURE ARRAY
CAUSE An attempt was made to dereference an array that had
pointer or function qualifiers, while the current language
was set to FORTRAN, which does not support them.