Removed code that caused gcc to complain can't find a register in class
* app/composite/gimp-composite-sse2.c: Removed code that caused gcc to complain can't find a register in class `GENERAL_REGS' To be revisited later.
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
2003-09-16 Helvetix Victorinox <helvetix@gimp.org>
|
||||
|
||||
* app/composite/gimp-composite-sse2.c: Removed code that caused
|
||||
gcc to complain can't find a register in class `GENERAL_REGS' To
|
||||
be revisited later.
|
||||
|
||||
2003-09-16 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/composite/gimp-composite-generic.c
|
||||
|
||||
@ -685,6 +685,7 @@ gimp_composite_swap_rgba8_rgba8_rgba8_sse2 (GimpCompositeContext *_op)
|
||||
{
|
||||
GimpCompositeContext op = *_op;
|
||||
|
||||
#if 0
|
||||
/*
|
||||
* Inhale one whole i686 cache line at once. 64 bytes, 16 rgba8 pixels, 4 128 bit xmm registers.
|
||||
*/
|
||||
@ -717,6 +718,7 @@ gimp_composite_swap_rgba8_rgba8_rgba8_sse2 (GimpCompositeContext *_op)
|
||||
op.A += 64;
|
||||
op.B += 64;
|
||||
}
|
||||
#endif
|
||||
|
||||
for (; op.n_pixels >= 4; op.n_pixels -= 4)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user