TAL Reference Manual

Error Messages
Appendix A—526371.001
A-40
Warning Messages
Warning Messages
The following messages indicate conditions that might affect program compilation or
execution. If you get any warning messages, check your code carefully to determine
whether you need to make corrections.
0
Three index registers are already reserved by USE statements. Three is the maximum
number of index registers that you can reserve. The compiler assigned the last
identifier to an already allocated index register.
1
An identifier in the current source line is longer than 31 characters, the maximum
allowed for an identifier. The compiler ignores all excess characters. Make sure the
shortened identifier is still unique within its scope.
2
An incorrect compiler directive option appears. The compiler ignores the option. If
omitting the option adversely affects the program, specify the correct option.
3
An initialization list contains more values or characters than can be contained by the
variable being initialized. The compiler ignores the excess items. If omitting the excess
values adversely affects the program, declare a variable large enough to hold the
values.
4
A procedure call passed the address of a read-only array to a procedure. Make sure
the procedure takes explicit action to use the address properly.
All index registers are reserved
Identifier exceeds 31 characters in length
Illegal option syntax
Initialization list exceeds space allocated
P-relative array passed as reference parameter