OSDN Git Service

configure: rename a variable in check_asm
authorMåns Rullgård <mans@mansr.com>
Mon, 18 Jan 2010 23:12:53 +0000 (23:12 +0000)
committerMåns Rullgård <mans@mansr.com>
Mon, 18 Jan 2010 23:12:53 +0000 (23:12 +0000)
Originally committed as revision 21302 to svn://svn.ffmpeg.org/ffmpeg/trunk

configure

index 461c1b9..8d53fb3 100755 (executable)
--- a/configure
+++ b/configure
@@ -583,11 +583,11 @@ check_as(){
 check_asm(){
     log check_asm "$@"
     name="$1"
-    asm="$2"
+    code="$2"
     shift 2
     disable $name
     check_as "$@" <<EOF && enable $name
-void foo(void){ __asm__ volatile($asm); }
+void foo(void){ __asm__ volatile($code); }
 EOF
 }