mirror of https://github.com/FFmpeg/FFmpeg.git
Commit 8c893aa3cd
removed quotes that were required to detect
inline asm:
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: Martin Storsjö <martin@martin.st>
pull/303/head^2
parent
4ce701b4e6
commit
52fd2afce8
1 changed files with 1 additions and 1 deletions
Loading…
Reference in new issue