mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
goom: add edx to clobber list in inline assembly code
mull modifies %edx, so should be mentioned in clobber list. Fixes crash on Solaris (#615998).
This commit is contained in:
parent
219058cc6f
commit
f3c032e6ac
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ zoom_filter_xmmx (int prevX, int prevY,
|
|||
"#4 \n\t addl %[prevX],%%eax"
|
||||
"#4 \n\t movq (%%esi,%%eax,4),%%mm2"::[expix1] "g" (expix1)
|
||||
,[prevX] "g" (prevX)
|
||||
:"eax", "esi");
|
||||
:"eax", "esi", "edx");
|
||||
|
||||
/*
|
||||
* pre : mm0 : expix1[position]
|
||||
|
|
Loading…
Reference in a new issue