From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 9D5DA3858C62 for ; Sun, 20 Aug 2023 08:15:56 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 9D5DA3858C62 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qXdbI-0001Ck-9o; Sun, 20 Aug 2023 04:15:56 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=BztN//XLIjVzQtYLl2hF+GbBg7p0IuW0bSpLWKROtAc=; b=kP7ucnd5XJmmklh7TP42 wiK4lmKSOQ2PjDzGoDIWKYjGq4z/rijxd/EPWTqb5/kMi1oSwz/KLt76aPRf1OYjp9gO1COVF92hM 8P9rWUUNqM6MQ0ij2dM8tyTkiLtxN+QAHuZZDRckerFwBYMSBD8xsdYVOG+4W+Sxa+OPgtP9+ocky 4SDjumeuuIVVqoUkXfxmMkvXb1TGNzTOoHNDXkw5+83/nEsXLfZ38D3xp2lC26XTJY+RlgG4yOFHs 0w12t31XitnNfX/JyeuqWpox/+vrBMIwgKFEULyrNNnoYy3TyjzBbwGwBGlSezqtAJlIwDDRkEN9/ tO4JyIOSjO+Bxw==; From: "Jose E. Marchesi" To: Tom Tromey Cc: cgen@sourceware.org Subject: Re: [RFC 05/14] Fix bug in insn.scm In-Reply-To: <20230819174900.866436-6-tom@tromey.com> (Tom Tromey's message of "Sat, 19 Aug 2023 11:42:04 -0600") References: <20230819174900.866436-1-tom@tromey.com> <20230819174900.866436-6-tom@tromey.com> Date: Sun, 20 Aug 2023 10:15:50 +0200 Message-ID: <87r0nyqgcp.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-7.1 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: OK. Thanks. > insn.scm has a bit of invalid code. I forget, but perhaps this was > pointed out by the Guile compiler. Fix it. > --- > insn.scm | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/insn.scm b/insn.scm > index 7a230df..b5eb2ba 100644 > --- a/insn.scm > +++ b/insn.scm > @@ -320,8 +320,7 @@ > (- (arch-next-ordinal CURRENT-ARCH) 2)) > ) > > - (begin > - logit 3 " failed ifield assertions.\n"))) > + (logit 3 " failed ifield assertions.\n"))) > > *UNSPECIFIED* > )