x86-64 bug fix: Fix stab generation for x86-64.

The size of a stab entry is 12 bytes even in 64bit environments. We must use int instead of long to keep the size of stab entries.
tcc-xref
Shinichiro Hamaji 2009-04-04 03:09:35 +09:00 committed by grischka
parent e6db5f5fb6
commit 754b0beb7d
1 changed files with 3 additions and 3 deletions

View File

@ -295,11 +295,11 @@ static void put_elf_reloc(Section *symtab, Section *s, unsigned long offset,
/* put stab debug information */
typedef struct {
unsigned long n_strx; /* index into string table of name */
unsigned int n_strx; /* index into string table of name */
unsigned char n_type; /* type of symbol */
unsigned char n_other; /* misc info (usually empty) */
unsigned short n_desc; /* description field */
unsigned long n_value; /* value of symbol */
unsigned int n_value; /* value of symbol */
} Stab_Sym;
static void put_stabs(const char *str, int type, int other, int desc,
@ -324,7 +324,7 @@ static void put_stabs_r(const char *str, int type, int other, int desc,
{
put_stabs(str, type, other, desc, value);
put_elf_reloc(symtab_section, stab_section,
stab_section->data_offset - sizeof(unsigned long),
stab_section->data_offset - sizeof(unsigned int),
R_DATA_32, sym_index);
}