From: ceriel Date: Thu, 5 Mar 1987 19:22:33 +0000 (+0000) Subject: procentry/procexit were not called properly X-Git-Tag: release-5-5~4502 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=1a5d5ddec26d7839e15cbced9acd46abb4d158ad;p=ack.git procentry/procexit were not called properly --- diff --git a/lang/cem/cemcom/code.c b/lang/cem/cemcom/code.c index 8b3c88b9c..dc5dc0eaa 100644 --- a/lang/cem/cemcom/code.c +++ b/lang/cem/cemcom/code.c @@ -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); }