move cpu-exec-common.c to accel/tcg Signed-off-by: Yang Zhong <yang.zh...@intel.com> --- Makefile.target | 1 - accel/tcg/Makefile.objs | 2 +- cpu-exec-common.c => accel/tcg/cpu-exec-common.c | 0 3 files changed, 1 insertion(+), 2 deletions(-) rename cpu-exec-common.c => accel/tcg/cpu-exec-common.c (100%)
diff --git a/Makefile.target b/Makefile.target index 709d07a..b083a76 100644 --- a/Makefile.target +++ b/Makefile.target @@ -91,7 +91,6 @@ all: $(PROGS) stap obj-y = exec.o translate-all.o obj-y += accel/ obj-y += translate-common.o -obj-y += cpu-exec-common.o obj-y += tcg/tcg.o tcg/tcg-op.o tcg/optimize.o obj-$(CONFIG_TCG_INTERPRETER) += tci.o obj-y += tcg/tcg-common.o diff --git a/accel/tcg/Makefile.objs b/accel/tcg/Makefile.objs index 6b75a31..940379b 100644 --- a/accel/tcg/Makefile.objs +++ b/accel/tcg/Makefile.objs @@ -1,3 +1,3 @@ obj-$(CONFIG_SOFTMMU) += tcg-all.o obj-$(CONFIG_SOFTMMU) += cputlb.o -obj-y += cpu-exec.o +obj-y += cpu-exec.o cpu-exec-common.o diff --git a/cpu-exec-common.c b/accel/tcg/cpu-exec-common.c similarity index 100% rename from cpu-exec-common.c rename to accel/tcg/cpu-exec-common.c -- 1.9.1