Commit 52fd2afc authored by John Cox's avatar John Cox Committed by Martin Storsjö

configure: fix inline asm checks

Commit 8c893aa3 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: 's avatarMartin Storsjö <martin@martin.st>
parent 4ce701b4
...@@ -866,7 +866,7 @@ EOF ...@@ -866,7 +866,7 @@ EOF
check_insn(){ check_insn(){
log check_insn "$@" log check_insn "$@"
check_inline_asm ${1}_inline "$2" check_inline_asm ${1}_inline "\"$2\""
check_as ${1}_external "$2" check_as ${1}_external "$2"
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment