]> git.sesse.net Git - x264/commitdiff
arm: move instructions after '.rept' to separate line
authorJanne Grunau <janne-x264@jannau.net>
Sun, 20 Jul 2014 11:34:27 +0000 (13:34 +0200)
committerFiona Glaser <fiona@x264.com>
Tue, 26 Aug 2014 16:19:18 +0000 (09:19 -0700)
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.

common/arm/pixel-a.S

index 7889d46184d37ca16fd2dfd08982cce820bdf2b0..e288bcf68c4515e93817871eb061fb2fa55eb692 100644 (file)
 .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: