CRISv10 string library add lineendings to asm

Add \n\ at end of lines inside asm statement to avoid warning.

No change except adding \n\ to end of line and correcting
whitespace has been done.
Removes warning about multi-line string literals when compiling
arch/cris/arch-v10/lib/string.c

Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Cc: Mikael Starvik <mikael.starvik@axis.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Jesper Nilsson and committed by Linus Torvalds 341ac6e4 2b05d2b3

+27 -27
+27 -27
arch/cris/arch-v10/lib/string.c
··· 95 95 If you want to check that the allocation was right; then 96 96 check the equalities in the first comment. It should say 97 97 "r13=r13, r11=r11, r12=r12" */ 98 - __asm__ volatile (" 99 - ;; Check that the following is true (same register names on 100 - ;; both sides of equal sign, as in r8=r8): 101 - ;; %0=r13, %1=r11, %2=r12 102 - ;; 103 - ;; Save the registers we'll use in the movem process 104 - ;; on the stack. 105 - subq 11*4,$sp 106 - movem $r10,[$sp] 107 - 108 - ;; Now we've got this: 109 - ;; r11 - src 110 - ;; r13 - dst 111 - ;; r12 - n 112 - 113 - ;; Update n for the first loop 114 - subq 44,$r12 115 - 0: 116 - movem [$r11+],$r10 117 - subq 44,$r12 118 - bge 0b 119 - movem $r10,[$r13+] 120 - 121 - addq 44,$r12 ;; compensate for last loop underflowing n 122 - 123 - ;; Restore registers from stack 124 - movem [$sp+],$r10" 98 + __asm__ volatile ("\n\ 99 + ;; Check that the following is true (same register names on \n\ 100 + ;; both sides of equal sign, as in r8=r8): \n\ 101 + ;; %0=r13, %1=r11, %2=r12 \n\ 102 + ;; \n\ 103 + ;; Save the registers we'll use in the movem process \n\ 104 + ;; on the stack. \n\ 105 + subq 11*4,$sp \n\ 106 + movem $r10,[$sp] \n\ 107 + \n\ 108 + ;; Now we've got this: \n\ 109 + ;; r11 - src \n\ 110 + ;; r13 - dst \n\ 111 + ;; r12 - n \n\ 112 + \n\ 113 + ;; Update n for the first loop \n\ 114 + subq 44,$r12 \n\ 115 + 0: \n\ 116 + movem [$r11+],$r10 \n\ 117 + subq 44,$r12 \n\ 118 + bge 0b \n\ 119 + movem $r10,[$r13+] \n\ 120 + \n\ 121 + addq 44,$r12 ;; compensate for last loop underflowing n \n\ 122 + \n\ 123 + ;; Restore registers from stack \n\ 124 + movem [$sp+],$r10" 125 125 126 126 /* Outputs */ : "=r" (dst), "=r" (src), "=r" (n) 127 127 /* Inputs */ : "0" (dst), "1" (src), "2" (n));