HP Pascal/iX Programmer's Guide (31502-90023)

8- 10
BEGIN
max(10,20,i);
max(i,j,k);
END.
is equivalent to the program:
PROGRAM prog;
VAR
i,j,k : integer;
BEGIN
{max(10,20,i)}
IF 10 > 20 THEN
i := 10
ELSE
i := 20;
{max(i,j,k)}
IF i > j THEN
k := i
ELSE
k := j;
END.
The INLINE procedure option requires STANDARD_LEVEL 'EXT_MODCAL'. The
equivalent INLINE compiler option does not. Refer to the
HP Pascal/iX
Reference Manual
or the
HP Pascal/HP-UX Reference Manual
, depending on
your implementation, for more information on the INLINE compiler option.
You cannot debug inline routines with a symbolic debugger. You can debug
routines that call inline routines, but the inlined code is treated as a
single statement and skipped. Breakpoints can only be set before or
after the inlined code.