From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6802 invoked by alias); 14 Jul 2009 19:53:37 -0000 Received: (qmail 6794 invoked by uid 22791); 14 Jul 2009 19:53:36 -0000 X-SWARE-Spam-Status: No, hits=-0.8 required=5.0 tests=AWL,BAYES_00,MEDICAL_SUBJECT,SPF_PASS X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.33.17) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 14 Jul 2009 19:53:30 +0000 Received: from spaceape7.eur.corp.google.com (spaceape7.eur.corp.google.com [172.28.16.141]) by smtp-out.google.com with ESMTP id n6EJrRJo005148 for ; Tue, 14 Jul 2009 20:53:27 +0100 Received: from fxm28 (fxm28.prod.google.com [10.184.13.28]) by spaceape7.eur.corp.google.com with ESMTP id n6EJrPbP025014 for ; Tue, 14 Jul 2009 12:53:25 -0700 Received: by fxm28 with SMTP id 28so529452fxm.14 for ; Tue, 14 Jul 2009 12:53:25 -0700 (PDT) Received: by 10.86.61.2 with SMTP id j2mr4456287fga.61.1247601205207; Tue, 14 Jul 2009 12:53:25 -0700 (PDT) Received: from localhost.localdomain.google.com (dhcp-172-22-125-203.mtv.corp.google.com [172.22.125.203]) by mx.google.com with ESMTPS id l19sm8971010fgb.6.2009.07.14.12.53.22 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 14 Jul 2009 12:53:24 -0700 (PDT) To: Jean Christophe Beyler Cc: gcc@gcc.gnu.org Subject: Re: Adding constraints.md to my port References: From: Ian Lance Taylor Date: Tue, 14 Jul 2009 19:53:00 -0000 In-Reply-To: (Jean Christophe Beyler's message of "Tue\, 14 Jul 2009 14\:30\:31 -0400") Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-System-Of-Record: true X-IsSubscribed: yes Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org X-SW-Source: 2009-07/txt/msg00255.txt.bz2 Jean Christophe Beyler writes: > In file included from ./tm_p.h:5, > from /home/toto/gcc-4.3.2/gcc/c-pragma.c:35: > ./tm-preds.h:40:1: warning: "CONSTRAINT_LEN" redefined > In file included from ./tm.h:6, > from /home/toto/gcc-4.3.2/gcc/c-pragma.c:24: > /home/toto/gcc-4.3.2/gcc/defaults.h:797:1: warning: this is the > location of the previous definition See defaults.h: #if !defined CONSTRAINT_LEN \ && !defined REG_CLASS_FROM_LETTER \ && !defined REG_CLASS_FROM_CONSTRAINT \ && !defined CONST_OK_FOR_LETTER_P \ && !defined CONST_OK_FOR_CONSTRAINT_P \ && !defined CONST_DOUBLE_OK_FOR_LETTER_P \ && !defined CONST_DOUBLE_OK_FOR_CONSTRAINT_P \ && !defined EXTRA_CONSTRAINT \ && !defined EXTRA_CONSTRAINT_STR \ && !defined EXTRA_MEMORY_CONSTRAINT \ && !defined EXTRA_ADDRESS_CONSTRAINT #define USE_MD_CONSTRAINTS Make sure that your CPU.h file does not define any of those macros. Ian