4029¶
“Nested calls of the same function are not possible.”
In non-reentrant target systems and in simulation mode a function call may not contain a call to itself as a parameter.
Example:
fun1(a,fun1(b,c,d),e);
Use an intermediate table.
“Nested calls of the same function are not possible.”
In non-reentrant target systems and in simulation mode a function call may not contain a call to itself as a parameter.
Example:
fun1(a,fun1(b,c,d),e);
Use an intermediate table.