HP Pascal/iX Reference Manual (31502-90022)

A-: 31
statement.
ACTION Remove either the label or the GOTO from the code.
---------------------------------------------------------------------------------------
293 MESSAGE TSAM INTRINSIC ERROR "! " (293)
CT CAUSE An error was encountered when reading a TSAM (toolset format)
file.
ACTION The error number replacing "! " refers to Toolset error
messages if 900 or above. Look them up in a Toolset manual.
Please report other numbers to your local HP representative.
---------------------------------------------------------------------------------------
294 MESSAGE $ INCLUDE NOT ALLOWED HERE WHEN SYMBOLIC DEBUG IS ENABLED (294)
CT CAUSE $INCLUDE of a file in executable code must be on a Pascal
statement boundary if symbolic debug is enabled.
---------------------------------------------------------------------------------------
370 MESSAGE IMPORTED MODULE ‘!‘ WAS NOT REFERENCED (370)
N CAUSE The specified module was imported and no references to it were
found.
ACTION Either remove the module from the IMPORT statement or cause the
module to be referenced.
---------------------------------------------------------------------------------------
371 MESSAGE USE OF AN INLINED ROUTINE (371)
N CAUSE An inlined routine has been expanded in the current statement.
ACTION No action required. This message is for your information only.
---------------------------------------------------------------------------------------
373 MESSAGE ASSUME "! " IS VALID, USE $ASSUME$ (373)
N CAUSE The given optimizer assumption is valid, and should be used in
the routine's declaration to get the most out of optimization.
ACTION Use the $ASSUME$ compiler option.
---------------------------------------------------------------------------------------
374 MESSAGE BIT32 Type CONVERTED TO LONG INTEGER (374)
N CAUSE Using bit32 requires that it be converted to a long integer.
ACTION Use type coercion to obtain a signed or unsigned 32 bit
operation.
---------------------------------------------------------------------------------------
377 MESSAGE CODE GENERATED TO VERIFY CORRECT POINTER ALIGNMENT (377)
N CAUSE Checking code will be generated to ensure that the pointer
being coerced has an alignment that allows it to be used as the
coerced pointer type.
ACTION Use $RANGE OFF$ to eliminate the extra code.