This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
configure: rename a variable in check_asm
Originally committed as revision 21302 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Måns Rullgård
16 years ago
parent
c956611527
commit
3784e82e9c
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
configure
+ 2
- 2
configure
View File
@@ -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
}
Write
Preview
Loading…
Cancel
Save