From c689e34fa752c154c11a05b05faae9844e4dc1eb Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 25 Oct 1993 15:43:02 +0000 Subject: [PATCH] Use LCSYM for bss and STSYM for data, so that grind can see the diff --- lang/cem/cemcom/stab.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lang/cem/cemcom/stab.c b/lang/cem/cemcom/stab.c index af1b4b0a9..02734d54c 100644 --- a/lang/cem/cemcom/stab.c +++ b/lang/cem/cemcom/stab.c @@ -273,6 +273,7 @@ stb_string(df, kind, str) } else if (df->df_sc != AUTO && df->df_sc != REGISTER) { /* global */ + int stabtp = df->df_initialized ? N_STSYM : N_LCSYM; if (df->df_sc == STATIC) { if (df->df_level >= L_LOCAL) { addc_db_str('V'); @@ -287,10 +288,10 @@ stb_string(df, kind, str) stb_type(tp); addc_db_str(';'); if (df->df_sc == STATIC && df->df_level >= L_LOCAL) { - C_ms_stb_dlb(db_str.base, N_LCSYM, 0, (label) df->df_address, (arith) 0); + C_ms_stb_dlb(db_str.base, stabtp, 0, (label) df->df_address, (arith) 0); } else { - C_ms_stb_dnam(db_str.base, N_LCSYM, 0, str, (arith) 0); + C_ms_stb_dnam(db_str.base, stabtp, 0, str, (arith) 0); } } else { /* local variable */ -- 2.34.1