public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] sim: avr: fix _start testsuite symbol
@ 2015-03-29  8:11 Mike Frysinger
  0 siblings, 0 replies; only message in thread
From: Mike Frysinger @ 2015-03-29  8:11 UTC (permalink / raw)
  To: gdb-patches

Make sure we use the symbol the linker expects by default, and we export
it so it can be found.

Committed.
---
 sim/testsuite/sim/avr/ChangeLog     | 4 ++++
 sim/testsuite/sim/avr/testutils.inc | 3 ++-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/sim/testsuite/sim/avr/ChangeLog b/sim/testsuite/sim/avr/ChangeLog
index a5e9c9c..8c1bde2 100644
--- a/sim/testsuite/sim/avr/ChangeLog
+++ b/sim/testsuite/sim/avr/ChangeLog
@@ -1,3 +1,7 @@
+2015-03-29  Mike Frysinger  <vapier@gentoo.org>
+
+	* testutils.inc (start): Change to _start and add global markings.
+
 2015-03-28  Mike Frysinger  <vapier@gentoo.org>
 
 	* pass.s, allinsn.exp, testutils.inc: New files.
diff --git a/sim/testsuite/sim/avr/testutils.inc b/sim/testsuite/sim/avr/testutils.inc
index 95a14fc..baad45d 100644
--- a/sim/testsuite/sim/avr/testutils.inc
+++ b/sim/testsuite/sim/avr/testutils.inc
@@ -37,5 +37,6 @@
 # All assembler tests should start with a call to "start"
 	.macro start
 	.text
-__start:
+.global _start
+_start:
 	.endm
-- 
2.3.4

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-03-29  8:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-29  8:11 [PATCH] sim: avr: fix _start testsuite symbol Mike Frysinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).