TAL Reference Summary
Error Messages
TAL Reference Summary
88 096256 Tandem Computers Incorporated
47 Illegal for 16-bit INT
An INT value appears where the compiler expected an INT(32) value. For the
unsigned divide ('/') and unsigned modulo divide ('\') operations, specify an INT(32)
dividend and an INT divisor.
48 Missing
item-specification
The source code is missing item-specification. Supply the missing item.
49 Undeclared identifier
A reference to an undeclared data item appears in the source file. Declare the item
or change the reference.
The string parameter of a parameter pair (string:length) is misspelled. Correct the
spelling.
50 Cannot drop this Label
A DROP statement refers to an undeclared or unused label. Drop a label only after
you declare it and after the compiler reads all references to it. Dropping a label saves
symbol table space and allows its reuse (as in a DEFINE macro).
51 Index register allocation failed
The compiler is unable to allocate an index register. You might have indexed multiple
arrays in a single statement and reserved the limit of index registers using USE
statements. Modify your program so that it requires no more than three index
registers at a time.
52 Missing initialization for code relative array
Initialization is missing from a read-only array declaration. When you declare a read-
only array, make sure you initialize the array with values (not including "").