From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1151 invoked by alias); 6 Aug 2007 16:51:17 -0000 Received: (qmail 1102 invoked by uid 22791); 6 Aug 2007 16:51:16 -0000 X-Spam-Check-By: sourceware.org Received: from palrel10.hp.com (HELO palrel10.hp.com) (156.153.255.245) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 06 Aug 2007 16:51:10 +0000 Received: from smtp1.cup.hp.com (smtp1.cup.hp.com [15.4.32.117]) by palrel10.hp.com (Postfix) with ESMTP id F34F936CDC for ; Mon, 6 Aug 2007 09:50:43 -0700 (PDT) Received: from hpsje.cup.hp.com (hpsje.cup.hp.com [16.89.92.85]) by smtp1.cup.hp.com (Postfix) with ESMTP id A5AD04A777B for ; Mon, 6 Aug 2007 16:50:43 +0000 (UTC) Received: (from sje@localhost) by hpsje.cup.hp.com (8.9.3 (PHNE_29774)/8.9.3) id JAA11187 for gcc-patches@gcc.gnu.org; Mon, 6 Aug 2007 09:50:43 -0700 (PDT) Date: Mon, 06 Aug 2007 16:51:00 -0000 From: Steve Ellcey Message-Id: <200708061650.JAA11187@hpsje.cup.hp.com> To: gcc-patches@gcc.gnu.org Subject: Obvious IA64 patch to fix typo Reply-To: sje@cup.hp.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit 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: 2007-08/txt/msg00354.txt.bz2 I found an typo in the config/ia64/ia64.h file where I had put a MODE1 instead of MODE2 in the MODES_TIEABLE_P macro. This patch fixes it. I did a bootstrap and will check it in as obvious. Steve Ellcey sje@cup.hp.com 2007-08-06 Steve Ellcey * config/ia64/ia64.h (MODES_TIEABLE_P): Fix typo. Index: config/ia64/ia64.h =================================================================== --- config/ia64/ia64.h (revision 127234) +++ config/ia64/ia64.h (working copy) @@ -678,7 +678,7 @@ while (0) #define MODES_TIEABLE_P(MODE1, MODE2) \ (GET_MODE_CLASS (MODE1) == GET_MODE_CLASS (MODE2) \ && ((((MODE1) == XFmode) || ((MODE1) == XCmode) || ((MODE1) == RFmode)) \ - == (((MODE2) == XFmode) || ((MODE2) == XCmode) || ((MODE1) == RFmode))) \ + == (((MODE2) == XFmode) || ((MODE2) == XCmode) || ((MODE2) == RFmode))) \ && (((MODE1) == BImode) == ((MODE2) == BImode))) /* Specify the modes required to caller save a given hard regno.