From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13854 invoked by alias); 31 Jul 2012 09:59:09 -0000 Received: (qmail 13796 invoked by uid 22791); 31 Jul 2012 09:59:07 -0000 X-SWARE-Spam-Status: No, hits=-6.1 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,RCVD_IN_DNSWL_HI,RCVD_IN_HOSTKARMA_W,SPF_HELO_PASS,T_RP_MATCHES_RCVD 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; Tue, 31 Jul 2012 09:58:54 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q6V9wsj2001791 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 31 Jul 2012 05:58:54 -0400 Received: from Cadeux.redhat.com (vpn1-6-48.ams2.redhat.com [10.36.6.48]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q6V9wpXu026015 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Tue, 31 Jul 2012 05:58:53 -0400 From: Nick Clifton To: gcc-patches@gcc.gnu.org Subject: Commit: FRV: Fix typo in definition of QUAD macro Date: Tue, 31 Jul 2012 10:14:00 -0000 Message-ID: <87txwouxa0.fsf@redhat.com> MIME-Version: 1.0 Content-Type: text/plain X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2012-07/txt/msg01544.txt.bz2 Hi Guys, I am checking in the patch below as an obvious fix for the definition of the QUAD macro in the FRV backend. Cheers Nick gcc/ChangeLog 2012-07-31 Nick Clifton * config/frv/frv.c (QUAD): Fix typo. Index: gcc/config/frv/frv.c =================================================================== --- gcc/config/frv/frv.c (revision 189996) +++ gcc/config/frv/frv.c (working copy) @@ -8435,7 +8435,7 @@ build_function_type_list (RET, T1, T2, T3, NULL_TREE) #define QUAD(RET, T1, T2, T3, T4) \ - build_function_type_list (RET, T1, T2, T3, NULL_TREE) + build_function_type_list (RET, T1, T2, T3, T4, NULL_TREE) tree void_ftype_void = build_function_type_list (voidt, NULL_TREE);