[x264-devel] arm: Use commas between all macro arguments in arm assembly
Martin Storsjö
git at videolan.org
Mon May 22 00:01:29 CEST 2017
x264 | branch: master | Martin Storsjö <martin at martin.st> | Fri Mar 24 11:33:35 2017 +0200| [1e92821c5a52c80ca4d1a9b6d038bec84be48b0a] | committer: Henrik Gramner
arm: Use commas between all macro arguments in arm assembly
The clang built-in assembler requires proper commas between all macro
arguments. As long as gas-preprocessor is used when building with clang,
this isn't an issue.
> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=1e92821c5a52c80ca4d1a9b6d038bec84be48b0a
---
common/arm/mc-a.S | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/arm/mc-a.S b/common/arm/mc-a.S
index e8d3d030..1d179e1b 100644
--- a/common/arm/mc-a.S
+++ b/common/arm/mc-a.S
@@ -140,7 +140,7 @@ MEMCPY_ALIGNED 16, 8
MEMCPY_ALIGNED 8, 16
MEMCPY_ALIGNED 8, 8
-const memcpy_table align=2, relocate=1
+const memcpy_table, align=2, relocate=1
.word memcpy_aligned_16_16_neon
.word memcpy_aligned_16_8_neon
.word memcpy_aligned_8_16_neon
More information about the x264-devel
mailing list