[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v3 22/25] tcg-ppc: Rename the tcg/ppc64 backend
From: |
Richard Henderson |
Subject: |
[Qemu-devel] [PATCH v3 22/25] tcg-ppc: Rename the tcg/ppc64 backend |
Date: |
Fri, 20 Jun 2014 07:13:38 -0700 |
The other tcg backends that support 32- and 64-bit modes
use the 32-bit name for the port. Follow suit.
Signed-off-by: Richard Henderson <address@hidden>
---
configure | 4 ++--
tcg/{ppc64 => ppc}/tcg-target.c | 0
tcg/{ppc64 => ppc}/tcg-target.h | 0
3 files changed, 2 insertions(+), 2 deletions(-)
rename tcg/{ppc64 => ppc}/tcg-target.c (100%)
rename tcg/{ppc64 => ppc}/tcg-target.h (100%)
diff --git a/configure b/configure
index 277eab4..a803448 100755
--- a/configure
+++ b/configure
@@ -4716,8 +4716,8 @@ elif test "$ARCH" = "s390x" ; then
QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/s390 $QEMU_INCLUDES"
elif test "$ARCH" = "x86_64" -o "$ARCH" = "x32" ; then
QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/i386 $QEMU_INCLUDES"
-elif test "$ARCH" = "ppc" ; then
- QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/ppc64 $QEMU_INCLUDES"
+elif test "$ARCH" = "ppc64" ; then
+ QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/ppc $QEMU_INCLUDES"
else
QEMU_INCLUDES="-I\$(SRC_PATH)/tcg/\$(ARCH) $QEMU_INCLUDES"
fi
diff --git a/tcg/ppc64/tcg-target.c b/tcg/ppc/tcg-target.c
similarity index 100%
rename from tcg/ppc64/tcg-target.c
rename to tcg/ppc/tcg-target.c
diff --git a/tcg/ppc64/tcg-target.h b/tcg/ppc/tcg-target.h
similarity index 100%
rename from tcg/ppc64/tcg-target.h
rename to tcg/ppc/tcg-target.h
--
1.9.3
- [Qemu-devel] [PATCH v3 12/25] tcg-ppc64: Adjust tcg_out_call for ELFv2, (continued)
- [Qemu-devel] [PATCH v3 12/25] tcg-ppc64: Adjust tcg_out_call for ELFv2, Richard Henderson, 2014/06/20
- [Qemu-devel] [PATCH v3 13/25] tcg-ppc64: Merge 32-bit ABIs into the prologue / frame code, Richard Henderson, 2014/06/20
- [Qemu-devel] [PATCH v3 14/25] tcg-ppc64: Fix sub2 implementation, Richard Henderson, 2014/06/20
- [Qemu-devel] [PATCH v3 15/25] tcg-ppc64: Begin merging ppc32 with ppc64, Richard Henderson, 2014/06/20
- [Qemu-devel] [PATCH v3 16/25] tcg-ppc64: Merge ppc32 brcond2, setcond2, muluh, Richard Henderson, 2014/06/20
- [Qemu-devel] [PATCH v3 17/25] tcg-ppc64: Merge ppc32 qemu_ld/st, Richard Henderson, 2014/06/20
- [Qemu-devel] [PATCH v3 18/25] tcg-ppc64: Merge ppc32 register usage, Richard Henderson, 2014/06/20
- [Qemu-devel] [PATCH v3 19/25] tcg-ppc64: Support mulsh_i32, Richard Henderson, 2014/06/20
- [Qemu-devel] [PATCH v3 20/25] tcg-ppc64: Merge ppc32 shifts, Richard Henderson, 2014/06/20
- [Qemu-devel] [PATCH v3 21/25] tcg-ppc: Remove the backend, Richard Henderson, 2014/06/20
- [Qemu-devel] [PATCH v3 22/25] tcg-ppc: Rename the tcg/ppc64 backend,
Richard Henderson <=
- [Qemu-devel] [PATCH v3 23/25] qemu/osdep: Remove the need for qemu_init_auxval, Richard Henderson, 2014/06/20
- [Qemu-devel] [PATCH v3 24/25] tcg-ppc: Merge cache-utils into the backend, Richard Henderson, 2014/06/20
- [Qemu-devel] [PATCH v3 25/25] tcg-ppc: Use the return address as a base pointer, Richard Henderson, 2014/06/20
- Re: [Qemu-devel] [PATCH v3 00/25] Merge ppc32/ppc64 tcg backends, Tom Musta, 2014/06/20