From patchwork Tue Dec 5 04:46:15 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 81331 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 756B73882073 for ; Tue, 5 Dec 2023 04:47:46 +0000 (GMT) X-Original-To: gdb-patches@sourceware.org Delivered-To: gdb-patches@sourceware.org Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) by sourceware.org (Postfix) with ESMTP id C582D3858433 for ; Tue, 5 Dec 2023 04:47:25 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org C582D3858433 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gentoo.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org C582D3858433 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=140.211.166.183 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1701751653; cv=none; b=GW8mC2wPZk2+7AL/FU4VChK8A9IlyjTIRAc4tr0kxOJOg46lSl89+AyudWz+YPS4izh0/bRaZ2NJt026c7meyCugnNDaoDgWgMkXvvaOfliU8wYMi4bgnIaJEP1z5YVDGwvZDFyRBfW10zQszTNs9Vr56oqDDA9uffKsM339Th4= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1701751653; c=relaxed/simple; bh=4eK1bY0r7JsqY/Mf7GjY+20ym+QwDRAp1MWBoCX9Jgw=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=FuO91tucWnCqQ/vdHFJf8PIoCy+tmpovEG47ctjzwh/WJorwTXDrAde57oMfo47+Z3ErVyG980eEjv8USijf1qzVZLNL8JkM0NhjnkDUYAuSEJEiXaj8hrU6CM1xnzJvYJ+nwPF8jtbqBcr8r5848vDl2t6CKTq/5I0LGe3pVqg= ARC-Authentication-Results: i=1; server2.sourceware.org Received: by smtp.gentoo.org (Postfix, from userid 559) id 03A9E335D76; Tue, 5 Dec 2023 04:47:25 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH 2/3 committed] sim: ppc: fix -Wmisleading-indentation warnings Date: Mon, 4 Dec 2023 23:46:15 -0500 Message-ID: <20231205044616.4000-2-vapier@gentoo.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20231205044616.4000-1-vapier@gentoo.org> References: <20231205044616.4000-1-vapier@gentoo.org> MIME-Version: 1.0 X-Spam-Status: No, score=-11.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gdb-patches-bounces+patchwork=sourceware.org@sourceware.org Fix building with -Wmisleading-indentation. --- sim/ppc/igen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim/ppc/igen.c b/sim/ppc/igen.c index 445afb9ee00d..8aa19c757f59 100644 --- a/sim/ppc/igen.c +++ b/sim/ppc/igen.c @@ -233,7 +233,7 @@ gen_semantics_c(insn_table *table, lf_printf(file, " option_mpc860c0 = 0;\n"); lf_printf(file, " if (tree_find_property(root, \"/options/mpc860c0\"))\n"); lf_printf(file, " option_mpc860c0 = tree_find_integer_property(root, \"/options/mpc860c0\");\n"); - lf_printf(file, " option_mpc860c0 *= 4; /* convert word count to byte count */\n"); + lf_printf(file, " option_mpc860c0 *= 4; /* convert word count to byte count */\n"); lf_printf(file, "}\n"); lf_printf(file, "\n"); if (generate_expanded_instructions)