mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-09 04:47:50 +00:00
win32 fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3965 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
3aba3d86f7
commit
a4d8670ffc
20
dyngen.c
20
dyngen.c
@ -1914,6 +1914,25 @@ void gen_code(const char *name, host_ulong offset, host_ulong size,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
type = rel->r_type;
|
type = rel->r_type;
|
||||||
|
if (is_label) {
|
||||||
|
/* TCG uses elf relocation constants */
|
||||||
|
#define R_386_32 1
|
||||||
|
#define R_386_PC32 2
|
||||||
|
switch(type) {
|
||||||
|
case DIR32:
|
||||||
|
type = R_386_32;
|
||||||
|
goto do_reloc;
|
||||||
|
case DISP32:
|
||||||
|
type = R_386_PC32;
|
||||||
|
addend -= 4;
|
||||||
|
do_reloc:
|
||||||
|
fprintf(outfile, " tcg_out_reloc(s, gen_code_ptr + %d, %d, %s, %d);\n",
|
||||||
|
reloc_offset, type, relname, addend);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
error("unsupported i386 relocation (%d)", type);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
switch(type) {
|
switch(type) {
|
||||||
case DIR32:
|
case DIR32:
|
||||||
fprintf(outfile, " *(uint32_t *)(gen_code_ptr + %d) = %s + %d;\n",
|
fprintf(outfile, " *(uint32_t *)(gen_code_ptr + %d) = %s + %d;\n",
|
||||||
@ -1926,6 +1945,7 @@ void gen_code(const char *name, host_ulong offset, host_ulong size,
|
|||||||
default:
|
default:
|
||||||
error("unsupported i386 relocation (%d)", type);
|
error("unsupported i386 relocation (%d)", type);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
#error unsupport object format
|
#error unsupport object format
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user