From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23606 invoked by alias); 7 Sep 2004 15:55:12 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 23591 invoked from network); 7 Sep 2004 15:55:11 -0000 Received: from unknown (HELO mx2.redhat.com) (66.187.237.31) by sourceware.org with SMTP; 7 Sep 2004 15:55:11 -0000 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.12.10/8.12.10) with ESMTP id i87Fsfl3031857; Tue, 7 Sep 2004 11:54:41 -0400 Received: from potter.sfbay.redhat.com (potter.sfbay.redhat.com [172.16.27.15]) by int-mx2.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i87Ft9726694; Tue, 7 Sep 2004 11:55:09 -0400 Received: from pain (vpn50-38.rdu.redhat.com [172.16.50.38]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id i87Ft8V13152; Tue, 7 Sep 2004 08:55:08 -0700 Subject: Re: Re: From: Andrew MacLeod To: Nathan Sidwell Cc: Diego Novillo , Richard Kenner , gcc mailing list In-Reply-To: <413DD79C.1030508@codesourcery.com> References: <10409071402.AA25285@vlsi1.ultra.nyu.edu> <1094568099.21733.44.camel@localhost.localdomain> <1094568656.31576.0.camel@pain> <413DD79C.1030508@codesourcery.com> Content-Type: text/plain Message-Id: <1094572506.31576.22.camel@pain> Mime-Version: 1.0 Date: Tue, 07 Sep 2004 15:55:00 -0000 Content-Transfer-Encoding: 7bit X-SW-Source: 2004-09/txt/msg00305.txt.bz2 On Tue, 2004-09-07 at 11:45, Nathan Sidwell wrote: > >>if (is_gimple_reg (var) || is_gimple_reg (alias)) > >> abort (); > >> > > > > > > This should probably be added permanently under ENABLE_CHECKING.... > spelt > gcc_assert (!is_gimple_reg (var) && !is_gimple_reg (alias)); of course :-) Its so hard to remember to change to modern ways :-) Andrew