From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2415 invoked by alias); 5 Oct 2011 20:34:18 -0000 Received: (qmail 2286 invoked by uid 22791); 5 Oct 2011 20:34:18 -0000 X-SWARE-Spam-Status: No, hits=-6.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 05 Oct 2011 20:34:03 +0000 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p95KY3YR032567 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 5 Oct 2011 16:34:03 -0400 Received: from fche.csb (vpn-236-135.phx2.redhat.com [10.3.236.135]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p95KY3W6019703; Wed, 5 Oct 2011 16:34:03 -0400 Received: by fche.csb (Postfix, from userid 2569) id 7B54758137; Wed, 5 Oct 2011 16:34:02 -0400 (EDT) Date: Wed, 05 Oct 2011 20:34:00 -0000 From: "Frank Ch. Eigler" To: Brian Mokrzycki Cc: cgen@sourceware.org Subject: Re: 64-bit instruction mask emitting as signed hex value Message-ID: <20111005203402.GA22623@redhat.com> References: <857E14BA-89BB-47E3-8BC9-CC02F296787F@uiowa.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <857E14BA-89BB-47E3-8BC9-CC02F296787F@uiowa.edu> User-Agent: Mutt/1.4.2.2i X-IsSubscribed: yes Mailing-List: contact cgen-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cgen-owner@sourceware.org X-SW-Source: 2011-q4/txt/msg00002.txt.bz2 Hi - On Mon, Oct 03, 2011 at 09:57:39PM -0500, Brian Mokrzycki wrote: > [...] Good hunting! > Guile 1.6.8 > guile> (number->string 0xFFFFFFFFFFFFFFFF 16) > "ffffffffffffffff" > > Guile 1.8.7 > guile> (number->string 0xFFFFFFFFFFFFFFFF 16) > "-1" In the case of guile 1.8.8 (fedora 15 x86_64), and guile 1.8.0 (rhel5 i386), guile> (number->string 18446744073709551615 16) "ffffffffffffffff" Maybe something's wrong just with your build of guile somehow. - FChE