diff --git a/ChangeLog b/ChangeLog index 6d99932ebd..550eed4051 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-05-10 Sven Neumann + + * app/composite/gimp-composite-mmx.c + (gimp_composite_swap_rgba8_rgba8_rgba8_mmx): applied patch from + Mukund that replaces remaining movntq instructions in MMX assembly + (bug #162778). + 2006-05-09 Simon Budig * themes/Default/images/stock-color-triangle-16.png: New icon diff --git a/app/composite/gimp-composite-mmx.c b/app/composite/gimp-composite-mmx.c index fe394a9072..495506876d 100644 --- a/app/composite/gimp-composite-mmx.c +++ b/app/composite/gimp-composite-mmx.c @@ -1263,8 +1263,8 @@ gimp_composite_swap_rgba8_rgba8_rgba8_mmx (GimpCompositeContext *_op) { asm volatile (" movq %0,%%mm2\n" "\tmovq %1,%%mm3\n" - "\tmovntq %%mm3,%0\n" - "\tmovntq %%mm2,%1\n" + "\tmovq %%mm3,%0\n" + "\tmovq %%mm2,%1\n" : "+m" (*a), "+m" (*b) : : "%mm2", "%mm3");