From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7027 invoked by alias); 6 Jun 2012 21:52:31 -0000 Received: (qmail 7004 invoked by uid 22791); 6 Jun 2012 21:52:29 -0000 X-SWARE-Spam-Status: No, hits=-4.2 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,KHOP_RCVD_TRUST,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-pz0-f41.google.com (HELO mail-pz0-f41.google.com) (209.85.210.41) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 06 Jun 2012 21:52:10 +0000 Received: by dakp5 with SMTP id p5so9849052dak.0 for ; Wed, 06 Jun 2012 14:52:10 -0700 (PDT) Received: by 10.68.219.135 with SMTP id po7mr585836pbc.149.1339019530035; Wed, 06 Jun 2012 14:52:10 -0700 (PDT) Received: from anchor.twiddle.home ([173.160.232.49]) by mx.google.com with ESMTPS id to1sm1658307pbc.27.2012.06.06.14.52.08 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 06 Jun 2012 14:52:09 -0700 (PDT) From: Richard Henderson To: libc-ports@sourceware.org Subject: [PATCH 1/5] alpha: put mcount prologue at correct location Date: Wed, 06 Jun 2012 21:52:00 -0000 Message-Id: <1339019524-32478-1-git-send-email-rth@twiddle.net> X-IsSubscribed: yes Mailing-List: contact libc-ports-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: libc-ports-owner@sourceware.org X-SW-Source: 2012-06/txt/msg00013.txt.bz2 --- ChangeLog.alpha | 4 ++++ sysdeps/alpha/_mcount.S | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog.alpha b/ChangeLog.alpha index 705a020..2c107ad 100644 --- a/ChangeLog.alpha +++ b/ChangeLog.alpha @@ -1,3 +1,7 @@ +2012-06-06 Richard Henderson + + * sysdeps/alpha/_mcount.S: Move .prologue after stack alloc. + 2012-06-05 Richard Henderson * sysdeps/unix/sysv/linux/alpha/rt_sigaction.S: Use .cfi_signal_frame diff --git a/sysdeps/alpha/_mcount.S b/sysdeps/alpha/_mcount.S index 9d7c15b..67c579e 100644 --- a/sysdeps/alpha/_mcount.S +++ b/sysdeps/alpha/_mcount.S @@ -38,9 +38,8 @@ .set noreorder LEAF(_mcount, 0xb0) - .prologue 0 - subq sp, 0xb0, sp + .prologue 0 stq a0, 0x00(sp) mov ra, a0 # a0 = caller-pc stq a1, 0x08(sp) -- 1.7.7.6