mirror of https://github.com/mpv-player/mpv
Fix clobber list, half of the modified registers were missing.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21043 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
8856d67d40
commit
66ac6e2a13
|
@ -97,7 +97,7 @@ void make_decode_tables_MMX(long scaleval)
|
|||
"jmp .L00\n\t"
|
||||
".L04:\n\t"
|
||||
::"g"(intwinbase_MMX),"m"(mp3lib_decwin[0]),"m"(scaleval),"m"(intwinbase_step)
|
||||
:"memory","%ebx","%esi","%edi");
|
||||
:"memory","%eax","%ebx","%ecx","%edx","%esi","%edi");
|
||||
intwinbase_step=2;
|
||||
__asm __volatile(
|
||||
"xorl %%ecx,%%ecx\n\t"
|
||||
|
@ -156,5 +156,5 @@ intwinbase_step=2;
|
|||
"jmp .L05\n\t"
|
||||
".L13:\n\t"
|
||||
::"g"(intwinbase_MMX),"m"(mp3lib_decwins[0]),"m"(scaleval),"m"(intwinbase_step)
|
||||
:"memory","%ebx","%esi","%edi");
|
||||
:"memory","%eax","%ebx","%ecx","%edx","%esi","%edi");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue