From: Janne Grunau Date: Sun, 20 Jul 2014 11:34:27 +0000 (+0200) Subject: arm: move instructions after '.rept' to separate line X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=feec4a478bfdfb4426268b2ee79bac473b97488c;p=libx264 arm: move instructions after '.rept' to separate line The gas manual states "Repeat the sequence of lines between the .rept directive and the next .endr directive ...". GNU as seems to support instructions on the same line as .rept anyway but the integrated assembler in llvm trunk (to be released 3.5 in August 2014) does not. --- diff --git a/common/arm/pixel-a.S b/common/arm/pixel-a.S index 7889d461..e288bcf6 100644 --- a/common/arm/pixel-a.S +++ b/common/arm/pixel-a.S @@ -28,10 +28,12 @@ .section .rodata .align 4 -.rept 16 .byte 0xff +.rept 16 + .byte 0xff .endr mask_ff: -.rept 16 .byte 0 +.rept 16 + .byte 0 .endr mask_ac4: