diff options
author | Jozef Lawrynowicz <jozef.l@mittosystems.com> | 2019-04-15 18:06:09 +0100 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2019-04-16 13:23:46 +0200 |
commit | 38ecf252e56326bbdb5952ca75a8fad99cd1679d (patch) | |
tree | eb302061199612c34a6a7e6e8fbacd894f886f37 /libgloss/msp430/crt0.S | |
parent | 2b4cf7622e65af1af831d2c48daa2a52ec3c56fa (diff) | |
download | newlib-38ecf252e56326bbdb5952ca75a8fad99cd1679d.zip newlib-38ecf252e56326bbdb5952ca75a8fad99cd1679d.tar.gz newlib-38ecf252e56326bbdb5952ca75a8fad99cd1679d.tar.bz2 |
Fix incorrect assembly code in _msp430_run_array
Diffstat (limited to 'libgloss/msp430/crt0.S')
-rw-r--r-- | libgloss/msp430/crt0.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgloss/msp430/crt0.S b/libgloss/msp430/crt0.S index f5ab8d3..53162e6 100644 --- a/libgloss/msp430/crt0.S +++ b/libgloss/msp430/crt0.S @@ -246,8 +246,8 @@ _msp430_run_array: jeq _msp430_run_done mov_ @R4, R7 add_ R6, R4 - call_ @R7 - br_ _msp430_run_array + call_ R7 + br_ #_msp430_run_array _msp430_run_done: ret_ |