Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Cox <jc@kynesim.co.uk>2018-05-30 19:30:31 +0300
committerJames Almer <jamrial@gmail.com>2018-06-06 16:49:31 +0300
commit72a34d23329944d4e062d07b9b5d730d332902b7 (patch)
tree8616a03616bf36e72a85b22857fcc4c9d5126c14 /configure
parentc8b57d4333b1bc5c4125fdac8fbf4625c399fc9c (diff)
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> (cherry picked from commit ad94f1c8abe68a2b38536cc96a31327c6be7b105)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index eb11d49750..ba3984910e 100755
--- a/configure
+++ b/configure
@@ -1036,7 +1036,7 @@ EOF
check_insn(){
log check_insn "$@"
- check_inline_asm ${1}_inline "$2"
+ check_inline_asm ${1}_inline "\"$2\""
check_as ${1}_external "$2"
}