sim: avr: fix _start testsuite symbol

Make sure we use the symbol the linker expects by default, and we export
it so it can be found.
This commit is contained in:
Mike Frysinger 2015-03-29 03:36:13 -04:00
parent 2a2ec787bf
commit 4f5cce88bf
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -37,5 +37,6 @@
# All assembler tests should start with a call to "start"
.macro start
.text
__start:
.global _start
_start:
.endm