From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.1 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 11424 invoked from network); 13 May 2020 19:36:23 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 13 May 2020 19:36:23 -0000 Received: (qmail 24515 invoked by uid 550); 13 May 2020 19:36:22 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 24494 invoked from network); 13 May 2020 19:36:21 -0000 X-Virus-Scanned: Debian amavisd-new at nospam.ludd.ltu.se DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ludd.ltu.se; s=mail; t=1589398566; bh=HlhHc/+sB5P/2hs+YSslCunXkBaUnAsWF73Elz4SRmg=; h=Subject:To:Cc:References:From:Date:In-Reply-To:From; b=qiGcru/bRXNmUl1SMTutEzvrnxKujIK4CLUj44QXbv8w4Dy16PZfgxt5Zb3ORc84W JTBUM1bjpDt+Qwu9j85aK6vwHcvFgL+PIcUkNIZhpyBOMvr5cb+sOP3Q4HvhWMeJgD Qi2XYDq/pBwf+6MqweZhoa1DeMUDfl7P8lpD2pag= To: John Arnold Cc: Rich Felker , musl@lists.openwall.com, pcc@lists.ludd.ltu.se References: <20200512212127.GQ21576@brightrain.aerifal.cx> <5ae8c7fa-aed9-d957-fe53-68eb2fa622a6@ludd.ltu.se> From: Anders Magnusson Message-ID: <7ddf56c0-b352-4ae1-f3a2-ba822ec4d8ae@ludd.ltu.se> Date: Wed, 13 May 2020 21:36:05 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:68.0) Gecko/20100101 Thunderbird/68.8.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: sv Subject: [musl] Re: [Pcc] [musl] PCC unable to build musl 1.2.0 (and likely earlier) Den 2020-05-13 kl. 19:00, skrev John Arnold: > Rich is right, changing line 105 to: > w = w+0.25*log(a)*I > > solves the problem, but then we get the bad register name `%%ax' error > when trying to assemble catan.o. > The %%ax bug fixed.  It only appeared for float comparisons where a CPU less than i686 was given. Some of the code was changed from using printf to internal routines and the extra % was left by mistake. -- R