TAL Reference Summary
Error Messages
TAL Reference Summary
90 096256 Tandem Computers Incorporated
59 Division by zero
The compiler detects an attempt to divide by 0. Correct the expression to avoid
division by 0.
60 Only a data variable may be indexed
An index is appended to an invalid identifier such as the identifier of a label or an
entry point. Append an index only to the identifier of a variable.
61 Actual/formal parameter count mismatch
A call to a procedure or subprocedure supplies more (or fewer) parameters than you
defined in the procedure or subprocedure declaration. Supply all required
parameters, and supply at least commas for all optional parameters.
62 Forward/external parameter count mismatch
The number of parameters specified in a FORWARD or EXTERNAL declaration
differs from that specified in the procedure body declaration. Specify the same
number of parameters in the procedure body declaration as there are in the
FORWARD or EXTERNAL declaration.
63 Illegal drop of USE variable in context of FOR loop
Within a FOR loop, a DROP statement attempts to drop a USE register that is the index
of the FOR loop. The FOR loop can function correctly only if the register remains
reserved. Remove the DROP statement from within the FOR loop.
64 Scale point must be a constant
The current source line contains a scale point that is not a constant. Specify the fpoint
in a FIXED variable declaration and the scale argument to the $SCALE function as INT
constants in the range -19 through +19.