fix missing comma in sh setjmp asm
authorTrutz Behn <me@trutz.be>
Wed, 28 Jan 2015 17:46:49 +0000 (18:46 +0100)
committerRich Felker <dalias@aerifal.cx>
Sat, 31 Jan 2015 02:58:28 +0000 (21:58 -0500)
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

index 6127ed9093ad477d5a5a4a62e97a131e89a7e55a..49e2d9858d9e0687788db27b9e6fe302cb497888 100644 (file)
@@ -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