Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJozef Lawrynowicz <jozef.l@somniumtech.com>2017-04-19 14:47:13 +0300
committerCorinna Vinschen <corinna@vinschen.de>2017-04-19 16:04:31 +0300
commit161b4ff037fa62a3d9d338333d2ad198b98223e5 (patch)
tree5605ddcf157eefbe99b39f5af23bb9524f9f0b7f /libgloss/msp430
parentfe86ad29d6df1384cb9633025be203af0e1b7fb6 (diff)
Fix relocation type for _bsssize being R_MSP430X_ABS16 when large memory model is used
Diffstat (limited to 'libgloss/msp430')
-rw-r--r--libgloss/msp430/crt0.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgloss/msp430/crt0.S b/libgloss/msp430/crt0.S
index 5c84e7c0b..f5ab8d335 100644
--- a/libgloss/msp430/crt0.S
+++ b/libgloss/msp430/crt0.S
@@ -72,9 +72,9 @@ START_CRT_FUNC 0100 init_bss
mov_ #__bssstart, R12
clr.w R13
- mov.w #__bsssize, R14
+ mov_ #__bsssize, R14
#ifdef __MSP430X_LARGE__
- clr.w R15 ; We assume that __bsssize is never > 64M
+ clr.w R15 ; We assume that __bsssize is never > 64K
#endif
call_ #memset