From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5063 invoked by alias); 26 Jul 2002 10:46:44 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 5022 invoked from network); 26 Jul 2002 10:46:38 -0000 Received: from unknown (HELO executor.cambridge.redhat.com) (195.224.55.237) by sources.redhat.com with SMTP; 26 Jul 2002 10:46:38 -0000 Received: from talisman.cambridge.redhat.com (talisman.cambridge.redhat.com [172.16.18.81]) by executor.cambridge.redhat.com (Postfix) with ESMTP id 37107ABAF8; Fri, 26 Jul 2002 11:46:38 +0100 (BST) Received: (from rsandifo@localhost) by talisman.cambridge.redhat.com (8.11.6/8.11.0) id g6QAkbH08303; Fri, 26 Jul 2002 11:46:37 +0100 X-Authentication-Warning: talisman.cambridge.redhat.com: rsandifo set sender to rsandifo@redhat.com using -f To: Zack Weinberg Cc: Richard Henderson , gcc-patches@gcc.gnu.org, Andrew Pinski Subject: Re: RFC/RFA: Improve definition of ASM_OUTPUT_MEASURED_SIZE References: <20020726002049.GD760@codesourcery.com> <20020725185339.C27268@redhat.com> <20020726053048.GA16614@codesourcery.com> From: Richard Sandiford Date: Fri, 26 Jul 2002 04:20:00 -0000 In-Reply-To: <20020726053048.GA16614@codesourcery.com> Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-07/txt/msg01556.txt.bz2 Zack Weinberg writes: > I have no access to IRIX. The irix headers define their own ASM_DECLARE_FUNCTION_SIZE, probably because it doesn't seem to like the old form either: .globl s .data s: .word 1 .word 2 t: .size s,t-s gave me: as: Error: /foo.s, line 7: Symbol must have absolute value: t .size s, t - s as: Error: /foo.s, line 7: Symbol must have absolute value: s (works if you replace "t-s" with "8"). Richard