mailing list of musl libc
 help / color / mirror / code / Atom feed
* [PATCH] fix missing comma in sh setjmp asm
@ 2015-01-28 17:46 Trutz Behn
  0 siblings, 0 replies; only message in thread
From: Trutz Behn @ 2015-01-28 17:46 UTC (permalink / raw)
  To: musl

this typo did not result in an erroneous setjmp with at least binutils
2.22 but fix it for clarity and compatibility with potentially stricter
sh assemblers.
---
 src/setjmp/sh/setjmp.s | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/setjmp/sh/setjmp.s b/src/setjmp/sh/setjmp.s
index 6127ed9093ad..49e2d9858d9e 100644
--- a/src/setjmp/sh/setjmp.s
+++ b/src/setjmp/sh/setjmp.s
@@ -13,7 +13,7 @@ setjmp:
 	fmov.s fr13, @-r4
 	fmov.s fr12, @-r4
 	sts.l  pr,   @-r4
-	mov.l  r15   @-r4
+	mov.l  r15,  @-r4
 	mov.l  r14,  @-r4
 	mov.l  r13,  @-r4
 	mov.l  r12,  @-r4
-- 
2.2.2




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-01-28 17:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-28 17:46 [PATCH] fix missing comma in sh setjmp asm Trutz Behn

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).