From: ceriel Date: Thu, 26 Jan 1989 13:39:03 +0000 (+0000) Subject: change some names X-Git-Tag: release-5-5~2668 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=811321b19020ce7f306e6f6ce26ce7198440fefd;p=ack.git change some names --- diff --git a/util/ceg/defaults/pseudo_vars.c b/util/ceg/defaults/pseudo_vars.c index 19c61796e..3160e639f 100644 --- a/util/ceg/defaults/pseudo_vars.c +++ b/util/ceg/defaults/pseudo_vars.c @@ -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; diff --git a/util/ceg/defaults/storage/C_bss_ilb.c b/util/ceg/defaults/storage/C_bss_ilb.c index 07a9ae450..e9db6e1f4 100644 --- a/util/ceg/defaults/storage/C_bss_ilb.c +++ b/util/ceg/defaults/storage/C_bss_ilb.c @@ -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); } } diff --git a/util/ceg/defaults/storage/C_con_ilb.c b/util/ceg/defaults/storage/C_con_ilb.c index 0c3ee4951..25150da00 100644 --- a/util/ceg/defaults/storage/C_con_ilb.c +++ b/util/ceg/defaults/storage/C_con_ilb.c @@ -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); } diff --git a/util/ceg/defaults/storage/C_hol_cst.c b/util/ceg/defaults/storage/C_hol_cst.c index 45e40f282..4dc16b0f4 100644 --- a/util/ceg/defaults/storage/C_hol_cst.c +++ b/util/ceg/defaults/storage/C_hol_cst.c @@ -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); diff --git a/util/ceg/defaults/storage/C_hol_dlb.c b/util/ceg/defaults/storage/C_hol_dlb.c index 719414d91..58f44a0d7 100644 --- a/util/ceg/defaults/storage/C_hol_dlb.c +++ b/util/ceg/defaults/storage/C_hol_dlb.c @@ -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); diff --git a/util/ceg/defaults/storage/C_hol_dnam.c b/util/ceg/defaults/storage/C_hol_dnam.c index 4ec1e713a..d9b7c18ec 100644 --- a/util/ceg/defaults/storage/C_hol_dnam.c +++ b/util/ceg/defaults/storage/C_hol_dnam.c @@ -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); diff --git a/util/ceg/defaults/storage/C_hol_ilb.c b/util/ceg/defaults/storage/C_hol_ilb.c index a7ce5052a..20be43589 100644 --- a/util/ceg/defaults/storage/C_hol_ilb.c +++ b/util/ceg/defaults/storage/C_hol_ilb.c @@ -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); } } diff --git a/util/ceg/defaults/storage/C_hol_pnam.c b/util/ceg/defaults/storage/C_hol_pnam.c index 95aa55fa0..e9e488f23 100644 --- a/util/ceg/defaults/storage/C_hol_pnam.c +++ b/util/ceg/defaults/storage/C_hol_pnam.c @@ -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); diff --git a/util/ceg/defaults/storage/C_rom_ilb.c b/util/ceg/defaults/storage/C_rom_ilb.c index 459748523..fd8d6d42b 100644 --- a/util/ceg/defaults/storage/C_rom_ilb.c +++ b/util/ceg/defaults/storage/C_rom_ilb.c @@ -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); }