Commit 97dee1c6 authored by mru's avatar mru

configure: rename a variable in check_asm

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21302 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7a4a6ce9
...@@ -583,11 +583,11 @@ check_as(){ ...@@ -583,11 +583,11 @@ check_as(){
check_asm(){ check_asm(){
log check_asm "$@" log check_asm "$@"
name="$1" name="$1"
asm="$2" code="$2"
shift 2 shift 2
disable $name disable $name
check_as "$@" <<EOF && enable $name check_as "$@" <<EOF && enable $name
void foo(void){ __asm__ volatile($asm); } void foo(void){ __asm__ volatile($code); }
EOF EOF
} }
......
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