Default dir_so_symnum to -10 to avoid even the slightest possibility of
screwage. This is a continuation of the redundant SO record fixup for the Lucid C++ compiler.
This commit is contained in:
parent
c31921729f
commit
6f7709b765
1 changed files with 2 additions and 2 deletions
|
@ -194,7 +194,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||
case N_SO: {
|
||||
unsigned long valu = CUR_SYMBOL_VALUE;
|
||||
static int last_so_symnum = -10;
|
||||
static int dir_so_symnum = -1;
|
||||
static int dir_so_symnum = -10;
|
||||
int tmp;
|
||||
char *p;
|
||||
|
||||
|
@ -244,7 +244,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||
tmp * symbol_size,
|
||||
objfile -> global_psymbols.next,
|
||||
objfile -> static_psymbols.next);
|
||||
dir_so_symnum = -1;
|
||||
dir_so_symnum = -10;
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue