change some names
authorceriel <none@none>
Thu, 26 Jan 1989 13:39:03 +0000 (13:39 +0000)
committerceriel <none@none>
Thu, 26 Jan 1989 13:39:03 +0000 (13:39 +0000)
util/ceg/defaults/pseudo_vars.c
util/ceg/defaults/storage/C_bss_ilb.c
util/ceg/defaults/storage/C_con_ilb.c
util/ceg/defaults/storage/C_hol_cst.c
util/ceg/defaults/storage/C_hol_dlb.c
util/ceg/defaults/storage/C_hol_dnam.c
util/ceg/defaults/storage/C_hol_ilb.c
util/ceg/defaults/storage/C_hol_pnam.c
util/ceg/defaults/storage/C_rom_ilb.c

index 19c6179..3160e63 100644 (file)
@@ -1,2 +1,2 @@
-int    locals_created = 0, busy = 0;
-int    holno = 0, procno = 0;
+int    B_locals_created = 0, B_busy = 0;
+int    B_holno = 0, B_procno = 0;
index 07a9ae4..e9db6e1 100644 (file)
@@ -29,7 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
-extern int procno;
+extern int B_procno;
 
 C_bss_ilb( n, l, i)
 arith n;
@@ -44,6 +44,6 @@ int i;
                dump_label();
 
                for ( i = 0; i < n/EM_PSIZE; i++)
-                       relocEM_PSIZE( extnd_ilb( l, procno), 0, ABSOLUTE);
+                       relocEM_PSIZE( extnd_ilb( l, B_procno), 0, ABSOLUTE);
        }
 }
index 0c3ee49..25150da 100644 (file)
@@ -29,7 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
-extern int procno;
+extern int B_procno;
 
 C_con_ilb( l)
 label l;
@@ -37,5 +37,5 @@ label l;
        switchseg( SEGCON);
        dump_label();   
 
-       relocEM_PSIZE( extnd_ilb( l, procno), 0, ABSOLUTE);
+       relocEM_PSIZE( extnd_ilb( l, B_procno), 0, ABSOLUTE);
 }
index 45e40f2..4dc16b0 100644 (file)
@@ -29,7 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
-extern int holno;
+extern int B_holno;
 
 C_hol_cst( n, w, i)
 arith n, w;
@@ -38,14 +38,14 @@ int i;
        if ( i == 0 || w == BSS_INIT) {
                switchseg( SEGBSS);
                align_word();
-               symbol_definition( extnd_hol( ++holno));
+               symbol_definition( extnd_hol( ++B_holno));
 
                bss( n);
        }
        else {  
                switchseg( SEGCON);
                align_word();
-               symbol_definition( extnd_hol( ++holno));
+               symbol_definition( extnd_hol( ++B_holno));
 
                for ( i = 0; i < n/EM_WSIZE; i++)
                        conEM_WSIZE( (CAST_WSIZE) w);
index 719414d..58f44a0 100644 (file)
@@ -29,7 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
-extern int holno;
+extern int B_holno;
 
 C_hol_dlb( n, l, offs, i)
 arith n, offs;
@@ -39,14 +39,14 @@ int i;
        if ( i == 0) {
                switchseg( SEGBSS);
                align_word();
-               symbol_definition( extnd_hol( ++holno));
+               symbol_definition( extnd_hol( ++B_holno));
 
                bss( n);
        }
        else {  
                switchseg( SEGCON);
                align_word();
-               symbol_definition( extnd_hol( ++holno));
+               symbol_definition( extnd_hol( ++B_holno));
 
                for ( i = 0; i < n/EM_PSIZE; i++)
                        relocEM_PSIZE( extnd_dlb( l), offs, ABSOLUTE);
index 4ec1e71..d9b7c18 100644 (file)
@@ -29,7 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
-extern int holno;
+extern int B_holno;
 
 C_hol_dnam( n, s, offs, i)
 arith n, offs;
@@ -39,14 +39,14 @@ int i;
        if ( i == 0) {
                switchseg( SEGBSS);
                align_word();
-               symbol_definition( extnd_hol( ++holno));
+               symbol_definition( extnd_hol( ++B_holno));
 
                bss( n);
        }
        else {  
                switchseg( SEGCON);
                align_word();
-               symbol_definition( extnd_hol( ++holno));
+               symbol_definition( extnd_hol( ++B_holno));
 
                for ( i = 0; i < n/EM_PSIZE; i++)
                        relocEM_PSIZE( extnd_dnam( s), offs, ABSOLUTE);
index a7ce505..20be435 100644 (file)
@@ -29,7 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
-extern int holno, procno;
+extern int B_holno, B_procno;
 
 C_hol_ilb( n, l, i)
 arith n;
@@ -39,16 +39,16 @@ int i;
        if ( i == 0) {
                switchseg( SEGBSS);
                align_word();
-               symbol_definition( extnd_hol( ++holno));
+               symbol_definition( extnd_hol( ++B_holno));
 
                bss( n);
        }
        else {  
                switchseg( SEGCON);
                align_word();
-               symbol_definition( extnd_hol( ++holno));
+               symbol_definition( extnd_hol( ++B_holno));
 
                for ( i = 0; i < n/EM_PSIZE; i++)
-                       relocEM_PSIZE( extnd_ilb( l, procno), 0, ABSOLUTE);
+                       relocEM_PSIZE( extnd_ilb( l, B_procno), 0, ABSOLUTE);
         }
 }
index 95aa55f..e9e488f 100644 (file)
@@ -29,7 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
-extern int holno;
+extern int B_holno;
 
 C_hol_pnam( n, s, i)
 arith n;
@@ -39,14 +39,14 @@ int i;
        if ( i == 0) {
                switchseg( SEGBSS);
                align_word();
-               symbol_definition( extnd_hol( ++holno));
+               symbol_definition( extnd_hol( ++B_holno));
 
                bss( n);
        }
        else {  
                switchseg( SEGCON);
                align_word();
-               symbol_definition( extnd_hol( ++holno));
+               symbol_definition( extnd_hol( ++B_holno));
 
                for ( i = 0; i < n/EM_PSIZE; i++)
                        relocEM_PSIZE( extnd_name( s), 0, ABSOLUTE);
index 4597485..fd8d6d4 100644 (file)
@@ -29,7 +29,7 @@
 #define relocEM_PSIZE  reloc4
 #endif
 
-extern int procno;
+extern int B_procno;
 
 C_rom_ilb( l)
 label l;
@@ -37,5 +37,5 @@ label l;
        switchseg( SEGROM);
        dump_label();   
 
-       relocEM_PSIZE( extnd_ilb( l, procno), 0, ABSOLUTE);
+       relocEM_PSIZE( extnd_ilb( l, B_procno), 0, ABSOLUTE);
 }