We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eca7b7 commit e4633c4Copy full SHA for e4633c4
cobj/codegen.c
@@ -4621,6 +4621,7 @@ static void joutput_internal_function(struct cb_program *prog,
4621
4622
joutput_line("/* Push module stack */");
4623
joutput_line("CobolModule.push (module);");
4624
+ joutput_line("CobolResolve.pushCallStackList (\"%s\");", prog->program_id);
4625
joutput_newline();
4626
4627
/* Initialization */
@@ -4891,6 +4892,7 @@ static void joutput_internal_function(struct cb_program *prog,
4891
4892
// }
4893
joutput_line("/* Pop module stack */");
4894
joutput_line("CobolModule.pop();");
4895
+ joutput_line("CobolResolve.popCallStackList();");
4896
4897
if (cb_flag_traceall) {
4898
joutput_line("CobolUtil.resetTrace();");
0 commit comments