From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 81664 invoked by alias); 8 Mar 2016 13:41:57 -0000 Mailing-List: contact gdb-testers-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-testers-owner@sourceware.org Received: (qmail 81631 invoked by uid 89); 8 Mar 2016 13:41:56 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=1.8 required=5.0 tests=AWL,BAYES_50,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 spammy=arc, ARC, Claudiu, claudiu X-HELO: kwanyin.sergiodj.net Received: from kwanyin.sergiodj.net (HELO kwanyin.sergiodj.net) (176.31.208.32) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 08 Mar 2016 13:41:46 +0000 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [binutils-gdb] [ARC] Allow non-instruction relocations within .text sections From: sergiodj+buildbot@sergiodj.net To: gdb-testers@sourceware.org Message-Id: <72f3b6aae734d8cdcded38aca94e379848bec7ef@gdb-build> Date: Tue, 08 Mar 2016 13:41:00 -0000 X-SW-Source: 2016-q1/txt/msg08147.txt.bz2 *** TEST RESULTS FOR COMMIT 72f3b6aae734d8cdcded38aca94e379848bec7ef *** Author: Claudiu Zissulescu Branch: master Commit: 72f3b6aae734d8cdcded38aca94e379848bec7ef [ARC] Allow non-instruction relocations within .text sections bfd/ 2016-03-08 Cupertino Miranda Andrew Burgess * elf32-arc.c (arc_bfd_get_32): Becomes an alias for bfd_get_32. (arc_bfd_put_32): Becomes an alias for bfd_put_32. (arc_elf_howto_init): Added assert to validate relocations. (get_middle_endian_relocation): Delete. (middle_endian_convert): New function. (ME): Redefine, now does nothing. (IS_ME): New define. (arc_do_relocation): Extend the attached 'ARC_RELOC_HOWTO' definition to call middle_endian_convert. Add a new local variable and make use of this throughout. Added call to arc_bfd_get_8 and arc_bfd_put_8 for 8 bit relocations. gas/ 2016-03-08 Andrew Burgess * testsuite/gas/arc/inline-data-1.d: New file. * testsuite/gas/arc/inline-data-1.s: New file. include/ 2016-03-08 Cupertino Miranda Andrew Burgess * elf/arc-reloc.def: Add a call to ME within the formula for each relocation that requires middle-endian correction.