From 4f5cce88bf504a2f0010f7ad384003984da6ce00 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 29 Mar 2015 03:36:13 -0400 Subject: [PATCH] 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. --- 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 + + * testutils.inc (start): Change to _start and add global markings. + 2015-03-28 Mike Frysinger * 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.7.4