From patchwork Mon Sep 10 11:40:51 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Graf X-Patchwork-Id: 182863 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 699AD2C0086 for ; Mon, 10 Sep 2012 22:14:54 +1000 (EST) Received: from localhost ([::1]:57676 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TB2NL-0008Pv-Tm for incoming@patchwork.ozlabs.org; Mon, 10 Sep 2012 07:41:59 -0400 Received: from eggs.gnu.org ([208.118.235.92]:48588) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TB2MS-0006Wl-Kt for qemu-devel@nongnu.org; Mon, 10 Sep 2012 07:41:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TB2MR-0001Gm-AG for qemu-devel@nongnu.org; Mon, 10 Sep 2012 07:41:04 -0400 Received: from cantor2.suse.de ([195.135.220.15]:53009 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TB2MR-0001Gc-13 for qemu-devel@nongnu.org; Mon, 10 Sep 2012 07:41:03 -0400 Received: from relay1.suse.de (unknown [195.135.220.254]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id 7FEB7A3DDE; Mon, 10 Sep 2012 13:41:02 +0200 (CEST) From: Alexander Graf To: qemu-devel qemu-devel Date: Mon, 10 Sep 2012 13:40:51 +0200 Message-Id: <1347277257-22639-7-git-send-email-agraf@suse.de> X-Mailer: git-send-email 1.6.0.2 In-Reply-To: <1347277257-22639-1-git-send-email-agraf@suse.de> References: <1347277257-22639-1-git-send-email-agraf@suse.de> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 X-Received-From: 195.135.220.15 Cc: Blue Swirl , Aurelien Jarno Subject: [Qemu-devel] [PATCH 06/12] target-s390x: rename op_helper.c to misc_helper.c X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Blue Swirl Now op_helper.c contains miscellaneous helpers, rename it to misc_helper.c. Signed-off-by: Blue Swirl [agraf: fix conflict] Signed-off-by: Alexander Graf --- target-s390x/Makefile.objs | 6 +++--- target-s390x/cpu.h | 2 +- target-s390x/{op_helper.c => misc_helper.c} | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) rename target-s390x/{op_helper.c => misc_helper.c} (99%) diff --git a/target-s390x/Makefile.objs b/target-s390x/Makefile.objs index b9b3061..a87d26f 100644 --- a/target-s390x/Makefile.objs +++ b/target-s390x/Makefile.objs @@ -1,10 +1,10 @@ -obj-y += translate.o op_helper.o helper.o cpu.o interrupt.o -obj-y += int_helper.o fpu_helper.o cc_helper.o mem_helper.o +obj-y += translate.o helper.o cpu.o interrupt.o +obj-y += int_helper.o fpu_helper.o cc_helper.o mem_helper.o misc_helper.o obj-$(CONFIG_SOFTMMU) += machine.o obj-$(CONFIG_KVM) += kvm.o -$(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) $(obj)/int_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) $(obj)/fpu_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) $(obj)/cc_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) $(obj)/mem_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) +$(obj)/misc_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) diff --git a/target-s390x/cpu.h b/target-s390x/cpu.h index 97fde5e..0ccb551 100644 --- a/target-s390x/cpu.h +++ b/target-s390x/cpu.h @@ -1005,7 +1005,7 @@ uint32_t set_cc_f64(float64 v1, float64 v2); uint32_t set_cc_nz_f32(float32 v); uint32_t set_cc_nz_f64(float64 v); -/* op_helper.c */ +/* misc_helper.c */ void program_interrupt(CPUS390XState *env, uint32_t code, int ilc); #endif diff --git a/target-s390x/op_helper.c b/target-s390x/misc_helper.c similarity index 99% rename from target-s390x/op_helper.c rename to target-s390x/misc_helper.c index bb8dbf5..1d5137f 100644 --- a/target-s390x/op_helper.c +++ b/target-s390x/misc_helper.c @@ -1,5 +1,5 @@ /* - * S/390 helper routines + * S/390 misc helper routines * * Copyright (c) 2009 Ulrich Hecht * Copyright (c) 2009 Alexander Graf