modifications in search for more speed
This commit is contained in:
@@ -5,7 +5,9 @@
|
|||||||
C_df_ilb( l)
|
C_df_ilb( l)
|
||||||
label l;
|
label l;
|
||||||
{
|
{
|
||||||
|
char *s;
|
||||||
|
|
||||||
swtxt();
|
swtxt();
|
||||||
symbol_definition( extnd_ilb( l));
|
symbol_definition(s = extnd_ilb( l));
|
||||||
set_local_visible( extnd_ilb( l));
|
set_local_visible(s);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,11 +6,12 @@ C_insertpart( d)
|
|||||||
int d;
|
int d;
|
||||||
|
|
||||||
{
|
{
|
||||||
|
char *s;
|
||||||
swtxt();
|
swtxt();
|
||||||
|
|
||||||
jump(extnd_part( d));
|
jump(extnd_part( d));
|
||||||
symbol_definition( extnd_cont( d));
|
symbol_definition( s = extnd_cont( d));
|
||||||
set_local_visible( extnd_cont( d));
|
set_local_visible( s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -18,10 +19,11 @@ C_beginpart( d)
|
|||||||
int d;
|
int d;
|
||||||
|
|
||||||
{
|
{
|
||||||
|
char *s;
|
||||||
swtxt();
|
swtxt();
|
||||||
|
|
||||||
symbol_definition( extnd_part( d));
|
symbol_definition(s = extnd_part( d));
|
||||||
set_local_visible( extnd_part( d));
|
set_local_visible(S);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ char*s;
|
|||||||
* roepen en daarna terug-jump-en naar het begin van de EM-procedure.
|
* roepen en daarna terug-jump-en naar het begin van de EM-procedure.
|
||||||
*/
|
*/
|
||||||
{
|
{
|
||||||
|
char *ss;
|
||||||
swtxt();
|
swtxt();
|
||||||
|
|
||||||
symbol_definition( extnd_name( s));
|
symbol_definition( extnd_name( s));
|
||||||
@@ -20,6 +21,6 @@ char*s;
|
|||||||
prolog();
|
prolog();
|
||||||
locals_created = 0;
|
locals_created = 0;
|
||||||
jump( extnd_pro( procno));
|
jump( extnd_pro( procno));
|
||||||
symbol_definition( extnd_start( procno));
|
symbol_definition( ss = extnd_start( procno));
|
||||||
set_local_visible( extnd_start( procno));
|
set_local_visible( ss);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user