diff options
author | John Cox <jc@kynesim.co.uk> | 2018-05-30 17:30:31 +0100 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-06-06 10:38:01 -0300 |
commit | ad94f1c8abe68a2b38536cc96a31327c6be7b105 (patch) | |
tree | a4e884ed68352b74db0168cf1ebfd638ff4877c7 /libavformat | |
parent | b74877206e5f16cf78466534ac1ae86ecd347e5d (diff) | |
download | ffmpeg-ad94f1c8abe68a2b38536cc96a31327c6be7b105.tar.gz |
configure: fix arm inline asm checks
Commit 8c893aa3cd5 removed quotes that were required to detect
inline asm in clang:
check_insn armv5te qadd r0, r0, r0
.../test.c:1:34: error: expected string literal in 'asm'
void foo(void){ __asm__ volatile(qadd r0, r0, r0); }
The correct code is:
void foo(void){ __asm__ volatile("qadd r0, r0, r0"); }
Commit message written by Frank Liberato <liberato@chromium.org>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat')
0 files changed, 0 insertions, 0 deletions