aboutsummaryrefslogtreecommitdiff
path: root/tccelf.c
diff options
context:
space:
mode:
authorjiang <30155751@qq.com>2014-05-01 20:58:43 +0800
committerjiang <30155751@qq.com>2014-05-01 20:58:43 +0800
commit59a22d59a20a472af772fce62c606209e99a5af0 (patch)
treeaa50a0c54c60d71790e952e46aaad4793030e8b7 /tccelf.c
parent2742fbcf95c25a36af23fcfa63ba6c78bc20abcc (diff)
downloadtinycc-59a22d59a20a472af772fce62c606209e99a5af0.tar.gz
tinycc-59a22d59a20a472af772fce62c606209e99a5af0.tar.bz2
update for x86_64-gen.c
Diffstat (limited to 'tccelf.c')
-rw-r--r--tccelf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tccelf.c b/tccelf.c
index 5a5d4af..9faf27f 100644
--- a/tccelf.c
+++ b/tccelf.c
@@ -1596,7 +1596,7 @@ ST_FUNC void fill_got_entry(TCCState *s1, ElfW_Rel *rel)
put32(s1->got->data + offset, sym->st_value & 0xffffffff);
}
-/* Perform relocation to GOT or PLTĀ entries */
+/* Perform relocation to GOT or PLT entries */
ST_FUNC void fill_got(TCCState *s1)
{
Section *s;
@@ -2469,7 +2469,7 @@ static int elf_output_file(TCCState *s1, const char *filename)
goto the_end;
}
- /* Perform relocation to GOT or PLTĀ entries */
+ /* Perform relocation to GOT or PLT entries */
if (file_type == TCC_OUTPUT_EXE && s1->static_link)
fill_got(s1);