silly bug fix: s/#ifdef PTR_SIZE == 4/#if PTR_SIZE == 4/

This commit is contained in:
Shinichiro Hamaji 2008-12-01 02:57:11 +09:00 committed by grischka
parent 27d23342ea
commit ba8c95a98d

View File

@ -725,7 +725,7 @@ static void build_got(TCCState *s1)
add_elf_sym(symtab_section, 0, 4, ELFW(ST_INFO)(STB_GLOBAL, STT_OBJECT),
0, s1->got->sh_num, "_GLOBAL_OFFSET_TABLE_");
ptr = section_ptr_add(s1->got, 3 * PTR_SIZE);
#ifdef PTR_SIZE == 4
#if PTR_SIZE == 4
/* keep space for _DYNAMIC pointer, if present */
put32(ptr, 0);
/* two dummy got entries */