From patchwork Tue Aug 13 15:10:45 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Michael Roth X-Patchwork-Id: 266844 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (unknown [IPv6:2001:4830:134:3::12]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id A73232C00FF for ; Wed, 14 Aug 2013 01:23:40 +1000 (EST) Received: from localhost ([::1]:52440 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9GRe-0002T8-Jc for incoming@patchwork.ozlabs.org; Tue, 13 Aug 2013 11:23:38 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60110) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9GGb-000522-4k for qemu-devel@nongnu.org; Tue, 13 Aug 2013 11:12:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V9GGW-0003tU-ML for qemu-devel@nongnu.org; Tue, 13 Aug 2013 11:12:13 -0400 Received: from mail-ob0-x22b.google.com ([2607:f8b0:4003:c01::22b]:65428) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9GGW-0003sV-Hr; Tue, 13 Aug 2013 11:12:08 -0400 Received: by mail-ob0-f171.google.com with SMTP id tb18so10582840obb.16 for ; Tue, 13 Aug 2013 08:12:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=qiMs/QDGB1FsxBS95++l5x5xgxFbl1YCtX0ln5pMVRQ=; b=f3aFkxtgVEXBVZIRvWFtWpKvrsLQjfKUeyZgjNXsweFfbZegKsBDuo/kK3Qc8KtL8F 59uNj9fv24hm9/HINRUMCHmFG5mBpVmgqhD+FGjw2PXTTSPhfiDUW5xtZos/1SbjznAv twa5liTWaip1ng0rDr/PyMeT75UH2nyO6V8fCIfewQhp345EJH4Cqakuft/j3jvsqEeD V8eYlIO+j15io9yVfPft3StZXeZCtXI+zfnD1BCM5Dpt6Y0XNoX9pL9ws7d+iCvlbC0M dQXmGdzoXE2AVQTD5LoYs7/IwN+LMr7FaWo+dy8vtEojT8iBgsQdmUmMqJDQDLnzx814 HjpA== X-Received: by 10.182.165.133 with SMTP id yy5mr574188obb.89.1376406727987; Tue, 13 Aug 2013 08:12:07 -0700 (PDT) Received: from loki.austin.ibm.com ([32.97.110.51]) by mx.google.com with ESMTPSA id uz16sm12947878obc.5.2013.08.13.08.12.06 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 13 Aug 2013 08:12:07 -0700 (PDT) From: Michael Roth To: qemu-devel@nongnu.org Date: Tue, 13 Aug 2013 10:10:45 -0500 Message-Id: <1376406680-16302-22-git-send-email-mdroth@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1376406680-16302-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1376406680-16302-1-git-send-email-mdroth@linux.vnet.ibm.com> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4003:c01::22b Cc: aliguori@us.ibm.com, qemu-stable@nongnu.org Subject: [Qemu-devel] [PATCH 21/56] target-moxie: gen_intermediate_code_internal() should be inlined 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: Andreas Färber Cc: qemu-stable@nongnu.org Reported-by: Richard Henderson Reviewed-by: Richard Henderson Signed-off-by: Andreas Färber (cherry picked from commit 13cccc692818a570d1fb1326c84d3edae68987aa) Signed-off-by: Michael Roth --- target-moxie/translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-moxie/translate.c b/target-moxie/translate.c index cc02bd3..28a5462 100644 --- a/target-moxie/translate.c +++ b/target-moxie/translate.c @@ -818,7 +818,7 @@ static int decode_opc(MoxieCPU *cpu, DisasContext *ctx) } /* generate intermediate code for basic block 'tb'. */ -static void +static inline void gen_intermediate_code_internal(MoxieCPU *cpu, TranslationBlock *tb, bool search_pc) {