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:
Diffstat (limited to 'libgloss')
-rw-r--r--libgloss/ChangeLog5
-rw-r--r--libgloss/or1k/boards/optimsoc.S2
-rw-r--r--libgloss/or1k/crt0.S2
3 files changed, 7 insertions, 2 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog
index 9bd02c785..806205a5a 100644
--- a/libgloss/ChangeLog
+++ b/libgloss/ChangeLog
@@ -1,5 +1,10 @@
2015-08-07 Stefan Wallentowitz <stefan.wallentowitz@tum.de>
+ * or1k/boards/optimsoc.S: Fix symbol name
+ * or1k/crt0.S: Remove paranthesis
+
+2015-08-07 Stefan Wallentowitz <stefan.wallentowitz@tum.de>
+
* or1k/crt0.S: Add exception nesting
* or1k/exceptions-asm.S: ditto
* or1k/util.c: ditto
diff --git a/libgloss/or1k/boards/optimsoc.S b/libgloss/or1k/boards/optimsoc.S
index eb782644d..824e7b107 100644
--- a/libgloss/or1k/boards/optimsoc.S
+++ b/libgloss/or1k/boards/optimsoc.S
@@ -59,7 +59,7 @@ _or1k_board_init_early:
#ifndef __OR1K_MULTICORE__
l.nop 0x1
.die:
- OR1K_DELAYED_NOP(l.j die)
+ OR1K_DELAYED_NOP(l.j .die)
#endif
l.movhi r1,hi(OPTIMSOC_NA_LMEM_SIZE)
l.ori r1,r1,lo(OPTIMSOC_NA_LMEM_SIZE)
diff --git a/libgloss/or1k/crt0.S b/libgloss/or1k/crt0.S
index 74ddaacf7..84adba1e3 100644
--- a/libgloss/or1k/crt0.S
+++ b/libgloss/or1k/crt0.S
@@ -124,7 +124,7 @@ _or1k_exception_stack_size: .word EXCEPTION_STACK_SIZE
); \
.Lnested_##id: \
/* Load back the stack pointer */ \
- l.lwz r1,0x4(r0)); \
+ l.lwz r1,0x4(r0); \
/* Add redzone, nesting needs this */ \
l.addi r1,r1,-REDZONE; \
.Lnesting_done_##id: \