Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
tcg: Remove target-specific headers from tcg.[ch]
This finally paves the way for tcg/ to be built once per mode.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
  • Loading branch information
rth7680 committed Jun 5, 2023
1 parent b78477f commit cac9b0f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions accel/tcg/plugin-gen.c
Expand Up @@ -43,6 +43,7 @@
* CPU's index into a TCG temp, since the first callback did it already.
*/
#include "qemu/osdep.h"
#include "cpu.h"
#include "tcg/tcg.h"
#include "tcg/tcg-temp-internal.h"
#include "tcg/tcg-op.h"
Expand Down
1 change: 0 additions & 1 deletion include/tcg/tcg.h
Expand Up @@ -25,7 +25,6 @@
#ifndef TCG_H
#define TCG_H

#include "cpu.h"
#include "exec/memop.h"
#include "exec/memopidx.h"
#include "qemu/bitops.h"
Expand Down
2 changes: 1 addition & 1 deletion tcg/region.c
Expand Up @@ -30,8 +30,8 @@
#include "qemu/cacheinfo.h"
#include "qemu/qtree.h"
#include "qapi/error.h"
#include "exec/exec-all.h"
#include "tcg/tcg.h"
#include "exec/translation-block.h"
#include "tcg-internal.h"


Expand Down
2 changes: 1 addition & 1 deletion tcg/tcg-op.c
Expand Up @@ -23,10 +23,10 @@
*/

#include "qemu/osdep.h"
#include "exec/exec-all.h"
#include "tcg/tcg.h"
#include "tcg/tcg-temp-internal.h"
#include "tcg/tcg-op-common.h"
#include "exec/translation-block.h"
#include "exec/plugin-gen.h"
#include "tcg-internal.h"

Expand Down
2 changes: 1 addition & 1 deletion tcg/tcg.c
Expand Up @@ -34,7 +34,7 @@
#include "qemu/cacheflush.h"
#include "qemu/cacheinfo.h"
#include "qemu/timer.h"
#include "exec/exec-all.h"
#include "exec/translation-block.h"
#include "exec/tlb-common.h"
#include "tcg/tcg-op-common.h"

Expand Down

0 comments on commit cac9b0f

Please sign in to comment.