mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
Remove special handling of system include files (no longer needed)
The formerly used dyngen code did not work with system include files like stdio.h. Tests with Linux, OSX and Win32 show that this restriction is no longer needed. So we hopefully can remove that special piece of code. This results in cleaner code and allows better use of the new GCC_FMT_ATTR macro. Cc: Blue Swirl <blauwirbel@gmail.com> Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
dbb1413589
commit
47b01cf3a1
4 changed files with 2 additions and 35 deletions
3
disas.h
3
disas.h
|
@ -8,11 +8,8 @@
|
|||
void disas(FILE *out, void *code, unsigned long size);
|
||||
void target_disas(FILE *out, target_ulong code, target_ulong size, int flags);
|
||||
|
||||
/* The usual mess... FIXME: Remove this condition once dyngen-exec.h is gone */
|
||||
#ifndef __DYNGEN_EXEC_H__
|
||||
void monitor_disas(Monitor *mon, CPUState *env,
|
||||
target_ulong pc, int nb_insn, int is_physical, int flags);
|
||||
#endif
|
||||
|
||||
/* Look up symbol for debugging purpose. Returns "" if unknown. */
|
||||
const char *lookup_symbol(target_ulong orig_addr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue