From patchwork Wed Oct 31 14:39:23 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joern Rennecke X-Patchwork-Id: 195886 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]) by ozlabs.org (Postfix) with SMTP id DB9362C021D for ; Thu, 1 Nov 2012 01:39:41 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1352299182; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Message-ID:Date:From:To:Subject:MIME-Version:Content-Type: Content-Transfer-Encoding:User-Agent:Mailing-List:Precedence: List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=Kj+yTlikocqhkb5lbOjEW7gaTA8=; b=AEPh6CkJ2Ba1/Di mzzjPV2PF+ZppDVMHd2mt2+mAYBzuqZtEo1V25tZb62EC1y8xVl9d82NemrKVnh2 e8OsYssteawNtDLDY5WnjE7jcTcANVDLjDwJo9Kn/5BNhs6S1CcLnS42VnpIXIhN DnT3PpOAfEgeWm8qz2uEL+dCpz64= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Message-ID:Date:From:To:Subject:MIME-Version:Content-Type:Content-Transfer-Encoding:User-Agent:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=TxMfs05lpBAl9WWRN6KbpJ+v5ZuuFNOXL/+9TCerT6LOaydDNappNe7RRnc+Uu DbPnbh8CV6BuXJfaZrMwf2GYH44C0s/xyj7HNzagBH/4E/YQ44sxGvAr6jXqqS9Y 3WJ2QE4+DfaZO2bIz5H5+5wFYk20vzHjOBJ42Ips3eBMA=; Received: (qmail 2334 invoked by alias); 31 Oct 2012 14:39:33 -0000 Received: (qmail 2271 invoked by uid 22791); 31 Oct 2012 14:39:32 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from c62.cesmail.net (HELO c62.cesmail.net) (216.154.195.54) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 31 Oct 2012 14:39:24 +0000 Received: from unknown (HELO epsilon2) ([192.168.1.60]) by c62.cesmail.net with ESMTP; 31 Oct 2012 10:39:23 -0400 Received: from cust213-dsl91-135-11.idnet.net (cust213-dsl91-135-11.idnet.net [91.135.11.213]) by webmail.spamcop.net (Horde MIME library) with HTTP; Wed, 31 Oct 2012 10:39:23 -0400 Message-ID: <20121031103923.3oeq8adjvk08sc4c-nzlynne@webmail.spamcop.net> Date: Wed, 31 Oct 2012 10:39:23 -0400 From: Joern Rennecke To: gcc-patches@gcc.gnu.org Subject: committed: fix compilation failure for ports that don't use LEN parameter of MOVE_BY_PIECES_P MIME-Version: 1.0 User-Agent: Internet Messaging Program (IMP) H3 (4.1.4) 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 Committed as obvious. 2012-10-31 Joern Rennecke * expr.c (can_move_by_pieces): Apply ATTRIBUTE_UNUSED to len. Index: expr.c =================================================================== --- expr.c (revision 193034) +++ expr.c (working copy) @@ -841,7 +841,7 @@ widest_int_mode_for_size (unsigned int s succeed. */ int -can_move_by_pieces (unsigned HOST_WIDE_INT len, +can_move_by_pieces (unsigned HOST_WIDE_INT len ATTRIBUTE_UNUSED, unsigned int align ATTRIBUTE_UNUSED) { return MOVE_BY_PIECES_P (len, align);