|
Message-Id: <1e3782ab023459c59ca48b5bfac587cb5640291c.1422467206.git.me@trutz.be> Date: Wed, 28 Jan 2015 18:46:49 +0100 From: Trutz Behn <me@...tz.be> To: musl@...ts.openwall.com Subject: [PATCH] fix missing comma in sh setjmp asm 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
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.