This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 4/4] or1k: Typo fixes


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Finally, this patch solves two typos I introduced and that broke
certain builds. Sorry for that.

Best,
Stefan
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iEYEARECAAYFAlXEZ0kACgkQuMYtsrn2U9zZ9gCgoiwb7RXoycrVWnPVrn88Ewxk
4vUAoJIR9nFt3plAL8phQ9BmZZBhlB8P
=heni
-----END PGP SIGNATURE-----
commit 1ad49e1b21e5ed64d5e49726deb46bee327ad1fe
Author: Stefan Wallentowitz <stefan@wallentowitz.de>
Date:   Fri Jul 3 11:56:06 2015 +0200

    or1k: Typo fixes
    
    Wrong paranthesis and an incorrect symbol name are fixed.
    
          * or1k/boards/optimsoc.S: Fix symbol name
          * or1k/crt0.S: Remove paranthesis

diff --git a/libgloss/or1k/boards/optimsoc.S b/libgloss/or1k/boards/optimsoc.S
index eb78264..824e7b1 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 74ddaac..84adba1 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:						\

Attachment: 0003-or1k-typos.patch.sig
Description: PGP signature


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]