From patchwork Mon Jan 25 20:34:52 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jakub Jelinek X-Patchwork-Id: 572896 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 1919D1402C9 for ; Tue, 26 Jan 2016 07:35:10 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=FXncqRqJ; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:cc:subject:message-id:reply-to:mime-version :content-type; q=dns; s=default; b=jJLVmmwcrCwo/hYdfCTVbo4nTUdsY VbPML849JvYF6pZtXtv1H/doO7XG0Jv0pvFmTsBxMKCSeA2Uqc6uaWBZ7XnwN+o2 UxjtMC7iUUy6GArIEmQIxuHuIQG0wtpuk3Il0WV8XI3OSfojIDezw4Lbn4YWBFdC ps5/EtY/POgQDc= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:cc:subject:message-id:reply-to:mime-version :content-type; s=default; bh=oGRwZO0TExoKFNnyFlVdwFIUm6c=; b=FXn cqRqJHQ0nR7z529VlewDjk6l6qSC5+XvC6zJfvhd9FltAmeFn2+1jHw7U7vEhDUo lTJrss5z/Ie2MUnWD8bGt0YrNGVAW+1oumukILe8FnjfQgmgxDSe9oT4ehrRqp/w 3QGjCEYDwAEVmI82Kmv4QMkxtNea04f6plpbCL7Q= Received: (qmail 8324 invoked by alias); 25 Jan 2016 20:34:59 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 8310 invoked by uid 89); 25 Jan 2016 20:34:58 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=IEEE, Hx-languages-length:811, 1107 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Mon, 25 Jan 2016 20:34:58 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id 0702442E5B5; Mon, 25 Jan 2016 20:34:57 +0000 (UTC) Received: from tucnak.zalov.cz ([10.3.113.11]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u0PKYt9v006941 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 25 Jan 2016 15:34:56 -0500 Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.15.2/8.15.2) with ESMTP id u0PKYrJY024300; Mon, 25 Jan 2016 21:34:54 +0100 Received: (from jakub@localhost) by tucnak.zalov.cz (8.15.2/8.15.2/Submit) id u0PKYq3f024299; Mon, 25 Jan 2016 21:34:52 +0100 Date: Mon, 25 Jan 2016 21:34:52 +0100 From: Jakub Jelinek To: David Edelsohn Cc: gcc-patches@gcc.gnu.org Subject: [PATCH] Fix a typo in ppc libgcc (PR target/69444) Message-ID: <20160125203452.GO3017@tucnak.redhat.com> Reply-To: Jakub Jelinek MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.24 (2015-08-30) X-IsSubscribed: yes Hi! The soft-fp multilib of powerpc libgcc doesn't build because of a typo in the conditional - the guarded code uses inline asm that assumes hard float. Ok for trunk? 2016-01-25 Jakub Jelinek PR target/69444 * config/rs6000/sfp-machine.h: Fix a typo in #ifndef - __NO_FPRS__ instead of ___NO_FPRS__. Jakub --- libgcc/config/rs6000/sfp-machine.h.jj 2016-01-21 21:27:57.000000000 +0100 +++ libgcc/config/rs6000/sfp-machine.h 2016-01-25 11:45:48.093285428 +0100 @@ -110,7 +110,7 @@ typedef int __gcc_CMPtype __attribute__ floating point on pre-ISA 3.0 machines without the IEEE 128-bit floating point support. */ -#ifndef ___NO_FPRS__ +#ifndef __NO_FPRS__ #define ISA_BIT(x) (1LL << (63 - x)) /* Use the same bits of the FPSCR. */