summaryrefslogtreecommitdiffstats
path: root/mp3lib/decode_i586.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-01 12:45:00 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-01 12:45:00 +0000
commit2ad2fefc2b486778470a7538059eb932b8d3bdb7 (patch)
treeaa93fb565e886c13cd1406416804b9c9ef676412 /mp3lib/decode_i586.c
parent8c4bbd0cb2ace517be3d44208c6381e1138846bf (diff)
downloadmpv-2ad2fefc2b486778470a7538059eb932b8d3bdb7.tar.bz2
mpv-2ad2fefc2b486778470a7538059eb932b8d3bdb7.tar.xz
Add missing registers to asm code in mp3lib
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22393 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib/decode_i586.c')
-rw-r--r--mp3lib/decode_i586.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mp3lib/decode_i586.c b/mp3lib/decode_i586.c
index dd553fa4ae..0a4ca1ebf1 100644
--- a/mp3lib/decode_i586.c
+++ b/mp3lib/decode_i586.c
@@ -313,6 +313,6 @@ int synth_1to1_pent(real *bandPtr, int channel, short *samples)
" movl "MANGLE(saved_ebp)",%%ebp\n\t"
:"=a"(retval)
:"m"(bandPtr),"m"(channel),"m"(samples),"m"(tmp[0])
- :"memory","%edi","%esi","%ebx");
+ :"memory","%edi","%esi","%ebx","%ecx","%edx");
return retval;
}