1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-18 21:31:13 +00:00

Fix .align is a power of two check.

hint by Philippe, phildev at mac com


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19528 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-08-24 22:39:26 +00:00
parent 2ddfdc85b3
commit 60bebad4d2

2
configure vendored
View File

@ -2235,7 +2235,7 @@ echocheck ".align is a power of two"
if test "$_asmalign_pot" = auto ; then
_asmalign_pot=no
cat > $TMPC << EOF
asm (".align 3");
main() { asm (".align 3"); }
EOF
cc_check && _asmalign_pot=yes
fi