Refine codes and fix several issues (#1094)

Add aot relocation for ".rodata.str" symbol to support more cases
Fix some coding style issues
Fix aot block/value stack destroy issue
Refine classic/fast interpreter codes
Clear compile warning of libc_builtin_wrapper.c in 32-bit platform
This commit is contained in:
Wenyong Huang
2022-04-18 17:33:30 +08:00
committed by GitHub
parent 2366e8c493
commit d4758d7380
9 changed files with 40 additions and 25 deletions

View File

@ -90,8 +90,8 @@ strcpy(char *dest, const char *src)
const unsigned char *s = src;
unsigned char *d = dest;
while ((*d++ = *s++))
;
while ((*d++ = *s++)) {
}
return dest;
}