Dan Sugalski <[EMAIL PROTECTED]> wrote:
> At 8:27 AM +0100 3/12/04, Leopold Toetsch wrote:
>>
>>@LOAD or other pragmas are only evaluated on the first statement of a
>>compilation unit. Branching inmidst some code isn't supported.
>>It's not likely that this will get changed.

> We need to fix that. Any sub in a compilation unit should be able to
> be marked as a LOAD sub, and we ought to be able to have multiple
> LOAD subs.

Any PIR sub is its own compilation unit, that's not the problem.
Above applies only to:

  .emit
  .pcc_sub @LOAD _label1:
  ...
  .pcc_sub @LOAD _label2:
  .eom


I'll not gonna change that. It's simple to split above:

  .emit
  .pcc_sub @LOAD _label1:
  .eom
  .emit
  .pcc_sub @LOAD _label2:
  .eom

leo

Reply via email to