sim: cr16: add _start symbol to tests [BZ #12385]
authorMike Frysinger <vapier@gentoo.org>
Mon, 30 Mar 2015 01:00:20 +0000 (21:00 -0400)
committerMike Frysinger <vapier@gentoo.org>
Mon, 30 Mar 2015 01:02:03 +0000 (21:02 -0400)
The current cr16 testsuite sets up _START, but the linker looks for the
_start symbol.  Add the latter as an alias to the former.

sim/testsuite/sim/cr16/ChangeLog
sim/testsuite/sim/cr16/testutils.inc

index 2aa6735006566cece1ba3be61aae4a0d44956b88..8d7e005988f9019efc05a728d9bae6ae03d2ba73 100644 (file)
@@ -1,3 +1,8 @@
+2015-03-29  Mike Frysinger  <vapier@gentoo.org>
+
+       PR sim/12385
+       * testutils.inc (START): Add _start symbol.
+
 2008-05-02  M R Swami Reddy <MR.Swami.Reddy@nsc.com>
 
        * cbitb.cgs, cbitw.cgs, sbitb.cgs, sbitw.cgs, tbit.cgs, tbitb.cgs,
index 0cb2ffcf90db016745e7dbd500b4e6030ab0a61d..1b82dc64c5efe27e89d7977b7060c6f699e71df3 100644 (file)
@@ -9,6 +9,8 @@ passmsg:
        .text
        .global _START
 _START:
+       .global _start
+_start:
        .endm
 
        .macro exit rc
This page took 0.024477 seconds and 4 git commands to generate.