From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29309 invoked by alias); 12 Oct 2007 17:26:30 -0000 Received: (qmail 29301 invoked by uid 22791); 12 Oct 2007 17:26:30 -0000 X-Spam-Check-By: sourceware.org Received: from wr-out-0506.google.com (HELO wr-out-0506.google.com) (64.233.184.234) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 12 Oct 2007 17:26:25 +0000 Received: by wr-out-0506.google.com with SMTP id 67so657198wri for ; Fri, 12 Oct 2007 10:26:23 -0700 (PDT) Received: by 10.78.83.15 with SMTP id g15mr2521704hub.1192209981907; Fri, 12 Oct 2007 10:26:21 -0700 (PDT) Received: from ?194.249.6.67? ( [194.249.6.67]) by mx.google.com with ESMTPS id 2sm1218330nfv.2007.10.12.10.26.20 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 12 Oct 2007 10:26:21 -0700 (PDT) Message-ID: <470FAE1C.6050806@gmail.com> Date: Fri, 12 Oct 2007 17:26:00 -0000 From: Uros Bizjak User-Agent: Thunderbird 1.5.0.7 (X11/20061008) MIME-Version: 1.0 To: GCC Patches CC: Nathan Froyd , "H. J. Lu" Subject: Re: [PATCH,i386] fix PR 11001 Content-Type: text/plain; charset=ISO-8859-1; format=flowed 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-10/txt/msg00755.txt.bz2 Hello! > > + /* Can't use this if the user has appropriated eax, ecx, or edi. */ > > + if (global_regs[0] || global_regs[2] || global_regs[5]) > > + return false; > > + > > Can you use/add AX_REG, CX_REG, DI_REG, SI_REG instead using 0, 2, > 4, 5? > I'll commit the update as soon as bootstrap finishes. A couple of constants has to be added to i386.md. Uros.