Added prefix C_ to the names prolog, jump, and locals
This commit is contained in:
@@ -17,7 +17,7 @@ arith l;
|
||||
|
||||
symbol_definition( p);
|
||||
set_local_visible( p);
|
||||
locals( l);
|
||||
jump( extnd_start( B_procno));
|
||||
C_locals( l);
|
||||
C_jump( extnd_start( B_procno));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ int d;
|
||||
char *s;
|
||||
swtxt();
|
||||
|
||||
jump(extnd_part( d));
|
||||
C_jump(extnd_part( d));
|
||||
symbol_definition( s = extnd_cont( d));
|
||||
set_local_visible( s);
|
||||
}
|
||||
@@ -33,7 +33,7 @@ int d;
|
||||
{
|
||||
swtxt();
|
||||
|
||||
jump(extnd_cont( d));
|
||||
C_jump(extnd_cont( d));
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ arith l;
|
||||
|
||||
symbol_definition( extnd_name( s));
|
||||
B_procno++;
|
||||
prolog();
|
||||
locals(l);
|
||||
C_prolog();
|
||||
C_locals(l);
|
||||
B_locals_created = 1;
|
||||
}
|
||||
|
||||
@@ -18,9 +18,9 @@ char*s;
|
||||
|
||||
symbol_definition( extnd_name( s));
|
||||
B_procno++;
|
||||
prolog();
|
||||
C_prolog();
|
||||
B_locals_created = 0;
|
||||
jump( extnd_pro( B_procno));
|
||||
C_jump( extnd_pro( B_procno));
|
||||
symbol_definition( ss = extnd_start( B_procno));
|
||||
set_local_visible( ss);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user