This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Remove unnecessary '#' from an assembly test file


Hi,

This patch removes a hash character from the end of a symbol in gdb/testsuite/gdb.dwarf2/dw2-icc-opaque.S

While some assemblers (e.g. x86 gas) are tolerant of it, others (e.g. arm gas) do complain about it.

Is it OK?

Thanks,
Yufeng


testsuite/ChangeLog


2012-10-10 Yufeng Zhang <yufeng.zhang@arm.com>

* gdb.dwarf2/dw2-icc-opaque.S: Remove '#'.
diff --git a/gdb/testsuite/gdb.dwarf2/dw2-icc-opaque.S b/gdb/testsuite/gdb.dwarf2/dw2-icc-opaque.S
index 47b017b..ddeb6c8 100644
--- a/gdb/testsuite/gdb.dwarf2/dw2-icc-opaque.S
+++ b/gdb/testsuite/gdb.dwarf2/dw2-icc-opaque.S
@@ -35,7 +35,7 @@
 	.file "opaque-pointer.c"
 	.data
 	.comm p_struct,8,8
-	.global p_struct#
+	.global p_struct
 
 	.section .debug_info
 debug_info_seg1:

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]