From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24701 invoked by alias); 16 Feb 2011 14:59:04 -0000 Received: (qmail 24692 invoked by uid 22791); 16 Feb 2011 14:59:03 -0000 X-SWARE-Spam-Status: No, hits=-1.4 required=5.0 tests=AWL,BAYES_00,NO_DNS_FOR_FROM,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mga02.intel.com (HELO mga02.intel.com) (134.134.136.20) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 16 Feb 2011 14:58:54 +0000 Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP; 16 Feb 2011 06:58:52 -0800 X-ExtLoop1: 1 Received: from gnu-6.sc.intel.com ([10.3.194.135]) by orsmga002.jf.intel.com with ESMTP; 16 Feb 2011 06:58:52 -0800 Received: by gnu-6.sc.intel.com (Postfix, from userid 500) id 868B8180B21; Wed, 16 Feb 2011 06:58:52 -0800 (PST) Date: Wed, 16 Feb 2011 14:59:00 -0000 From: "H.J. Lu" To: binutils@sourceware.org Subject: PATCH: Don't check relocation overflow for x32. Message-ID: <20110216145852.GA15249@intel.com> Reply-To: "H.J. Lu" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org X-SW-Source: 2011-02/txt/msg00188.txt.bz2 I checked in this patch. H.J. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 1ab968c..7ce8b2f 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2011-02-16 H.J. Lu + + * elf64-x86-64.c (elf_x86_64_check_relocs): Check relocation + overflow only for ABI_64_P. + (elf_x86_64_relocate_section): Likewise. + 2011-02-15 Tristan Gingold * vms-alpha.c (alpha_vms_link_add_archive_symbols): Add a comment. diff --git a/bfd/elf64-x86-64.c b/bfd/elf64-x86-64.c index 343abce..70fe9b1 100644 --- a/bfd/elf64-x86-64.c +++ b/bfd/elf64-x86-64.c @@ -1498,6 +1498,7 @@ not_pointer: sections we don't care about, such as debug sections or non-constant sections. */ if (info->shared + && ABI_64_P (abfd) && (sec->flags & SEC_ALLOC) != 0 && (sec->flags & SEC_READONLY) != 0) { @@ -3148,6 +3149,7 @@ elf_x86_64_relocate_section (bfd *output_bfd, for shared library since it may not be local when used as function address. */ if (info->shared + && ABI_64_P (output_bfd) && h && h->def_regular && h->type == STT_FUNC