HP Pascal/HP-UX Release Notes Version A.10.08

42 Chapter 1
New and Changed Features
New Warning Messages
New Warning Messages
The following warning messages for the +Oinitcheck optimization
parameter have been added to HP Pascal/HP-UX.
585 MESSAGE CONDITIONAL USE OF UNINITIALIZED VARIABLE '!' (585)
W CAUSE The local variable mentioned in the message may be uninitialized
when used in this procedure or function. It may be initialized in a
THEN clause and not the ELSE clause. Or it may not appear in all
statements of a CASE. Or it may be in a FOR or WHILE loop that might
never execute.
ACTION Ensure that the variable is initialized before use.
589 MESSAGE CONDITIONAL USE OF UNINITIALIZED FIELD '!' of '!'
(589)
W CAUSE The field of the local variable mentioned in the message may be
uninitialized when used in this procedure or function. It may be
initialized in a THEN clause and not the ELSE clause. Or it may not
appear in all statements of a CASE. Or it may be in a FOR or WHILE
loop that might never execute.
ACTION Ensure that the field is initialized before use.