From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30534 invoked by alias); 29 Apr 2005 13:08:20 -0000 Mailing-List: contact libc-hacker-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sources.redhat.com Received: (qmail 30400 invoked from network); 29 Apr 2005 13:08:17 -0000 Received: from unknown (HELO mx2.suse.de) (195.135.220.15) by sourceware.org with SMTP; 29 Apr 2005 13:08:17 -0000 Received: from hermes.suse.de (hermes-ext.suse.de [195.135.221.8]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id 39FB89B72 for ; Fri, 29 Apr 2005 15:08:17 +0200 (CEST) Date: Fri, 29 Apr 2005 13:08:00 -0000 From: Thorsten Kukuk To: libc-hacker@sources.redhat.com Subject: [PATCH] fix sysdeps/i386/sysdep.h Message-ID: <20050429130841.GA7649@suse.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.9i X-SW-Source: 2005-04/txt/msg00024.txt.bz2 Hi, Some *.S files don't compile any longer due the last change to sysdeps/i386/sysdep.h. Here is the fix: 2005-04-29 Thorsten Kukuk * sysdep.h (CALL_MCOUNT): Remove wrong backslash. Index: sysdeps/i386/sysdep.h =================================================================== RCS file: /cvs/glibc/libc/sysdeps/i386/sysdep.h,v retrieving revision 1.15 diff -u -r1.15 sysdep.h --- sysdeps/i386/sysdep.h 28 Apr 2005 21:09:30 -0000 1.15 +++ sysdeps/i386/sysdep.h 29 Apr 2005 13:04:29 -0000 @@ -94,7 +94,7 @@ /* The mcount code relies on a normal frame pointer being on the stack to locate our caller, so push one just for its benefit. */ #define CALL_MCOUNT \ - pushl %ebp; cfi_adjust_cfa_offset (4); \ movl %esp, %ebp; \ + pushl %ebp; cfi_adjust_cfa_offset (4); movl %esp, %ebp; \ cfi_def_cfa_register (ebp); call JUMPTARGET(mcount); \ popl %ebp; cfi_def_cfa (esp, 4); #else -- Thorsten Kukuk http://www.suse.de/~kukuk/ kukuk@suse.de SUSE LINUX Products GmbH Maxfeldstr. 5 D-90409 Nuernberg -------------------------------------------------------------------- Key fingerprint = A368 676B 5E1B 3E46 CFCE 2D97 F8FD 4E23 56C6 FB4B