diff options
author | Janne Grunau | 2014-05-30 16:57:44 +0200 |
---|---|---|
committer | Janne Grunau | 2014-06-03 14:23:02 +0200 |
commit | 68a06b3a639ee21c78532ee4c50c3366bf890ff7 (patch) | |
tree | 99fc597c860ea8358cf403b4a3d495f33784d1dd /libavutil/aarch64 | |
parent | 6a0fa4d86f2b3e9060a1153b39fa3bfe36f1b617 (diff) |
aarch64: use '#' for whole line asm comments
Both gnu as and clang treat lines starting with '#' as comments if they
aren't consumed by the C-style preprocessor.
Using '//' does not work with clang since comments are removed before
macro expansion.
Diffstat (limited to 'libavutil/aarch64')
-rw-r--r-- | libavutil/aarch64/asm.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/aarch64/asm.S b/libavutil/aarch64/asm.S index b23eb4f812..3690a33af6 100644 --- a/libavutil/aarch64/asm.S +++ b/libavutil/aarch64/asm.S @@ -23,7 +23,7 @@ #ifdef __ELF__ # define ELF #else -# define ELF // +# define ELF # #endif .macro function name, export=0, align=2 |