From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30211 invoked by alias); 18 Jun 2012 15:32:54 -0000 Received: (qmail 30202 invoked by uid 22791); 18 Jun 2012 15:32:53 -0000 X-SWARE-Spam-Status: No, hits=-1.5 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,MSGID_MULTIPLE_AT,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_NO,RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from service87.mimecast.com (HELO service87.mimecast.com) (91.220.42.44) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 18 Jun 2012 15:32:39 +0000 Received: from cam-owa2.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.21]) by service87.mimecast.com; Mon, 18 Jun 2012 16:32:37 +0100 Received: from E103079 ([10.1.255.212]) by cam-owa2.Emea.Arm.com with Microsoft SMTPSVC(6.0.3790.3959); Mon, 18 Jun 2012 16:33:15 +0100 From: "Greta Yorsh" To: Cc: "Richard Earnshaw" Subject: [patch][testsuite,arm] Fix .global directives in gdb.arch/arm-disp-step.S Date: Mon, 18 Jun 2012 15:32:00 -0000 Message-ID: <000901cd4d67$aa3654b0$fea2fe10$@Yorsh@arm.com> MIME-Version: 1.0 X-MC-Unique: 112061816323716901 Content-Type: multipart/mixed; boundary="----=_NextPart_000_000A_01CD4D70.0BFABCB0" X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2012-06/txt/msg00582.txt.bz2 This is a multi-part message in MIME format. ------=_NextPart_000_000A_01CD4D70.0BFABCB0 Content-Type: text/plain; charset=WINDOWS-1252 Content-Transfer-Encoding: quoted-printable Content-length: 416 The test gdb.arch/arm-disp-step.S fails with an assembler error, as a result of a change to reading symbol names made by: http://sourceware.org/ml/binutils-cvs/2012-05/msg00199.html This patch fixes the use of .global directives in gdb.arch/arm-disp-step.S by inserting the missing labels. Thanks, Greta 2012-06-14 Greta Yorsh * gdb.arch/arm-disp-step.S: Fix use of .global directives. ------=_NextPart_000_000A_01CD4D70.0BFABCB0 Content-Type: text/plain; name=test-gdb-disp-step.patch.txt Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="test-gdb-disp-step.patch.txt" Content-length: 788 diff --git a/gdb/testsuite/gdb.arch/arm-disp-step.S b/gdb/testsuite/gdb.arc= h/arm-disp-step.S index 423edc0..09d1663 100644 --- a/gdb/testsuite/gdb.arch/arm-disp-step.S +++ b/gdb/testsuite/gdb.arch/arm-disp-step.S @@ -110,7 +110,7 @@ test_ret: .type test_branch, %function test_branch: b L_branch - .global + .global L_branch L_branch: bx lr .size test_branch, .-test_branch @@ -124,7 +124,7 @@ L_branch: test_ldr_pc: ldr r1, [pc, #0] =20 - .global + .global test_ldr_pc_ret test_ldr_pc_ret: bx lr .size test_ldr_pc, .-test_ldr_pc @@ -137,10 +137,10 @@ test_ldm_stm_pc: ldmia sp!, {r0, r1} ldr r0, .L1 stmdb sp!, {r0} - .global + .global test_ldm_pc test_ldm_pc: ldmia sp!, {pc} - .global + .global test_ldm_stm_pc_ret test_ldm_stm_pc_ret: bx lr .align 2 ------=_NextPart_000_000A_01CD4D70.0BFABCB0--