Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [patch][testsuite,arm] Fix .global directives in gdb.arch/arm-disp-step.S
@ 2012-06-18 15:32 Greta Yorsh
  2012-06-25 12:45 ` Greta Yorsh
  2012-06-25 12:47 ` Richard Earnshaw
  0 siblings, 2 replies; 3+ messages in thread
From: Greta Yorsh @ 2012-06-18 15:32 UTC (permalink / raw)
  To: gdb-patches; +Cc: Richard Earnshaw

[-- Attachment #1: Type: text/plain, Size: 430 bytes --]

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  <Greta.Yorsh@arm.com>

	* gdb.arch/arm-disp-step.S: Fix use of .global directives.


[-- Attachment #2: test-gdb-disp-step.patch.txt --]
[-- Type: text/plain, Size: 819 bytes --]

diff --git a/gdb/testsuite/gdb.arch/arm-disp-step.S b/gdb/testsuite/gdb.arch/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]
 
-	.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

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-06-25 12:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-18 15:32 [patch][testsuite,arm] Fix .global directives in gdb.arch/arm-disp-step.S Greta Yorsh
2012-06-25 12:45 ` Greta Yorsh
2012-06-25 12:47 ` Richard Earnshaw

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox