procentry/procexit were not called properly
This commit is contained in:
parent
f36ee6de55
commit
1a5d5ddec2
1 changed files with 2 additions and 2 deletions
|
@ -566,7 +566,7 @@ prc_entry(name)
|
|||
if (options['p']) {
|
||||
C_df_dlb(l1 = data_label());
|
||||
C_rom_scon(name, (arith) (strlen(name) + 1));
|
||||
C_lae_dlb(l1);
|
||||
C_lae_dlb(l1, (arith) 0);
|
||||
C_cal("procentry");
|
||||
C_asp(pointer_size);
|
||||
}
|
||||
|
@ -575,7 +575,7 @@ prc_entry(name)
|
|||
prc_exit()
|
||||
{
|
||||
if (options['p']) {
|
||||
C_lae_dlb(l1);
|
||||
C_lae_dlb(l1, (arith) 0);
|
||||
C_cal("procexit");
|
||||
C_asp(pointer_size);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue