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:
Helvetix Victorinox
2003-09-16 15:53:50 +00:00
parent 555038debf
commit c8a23c4588
2 changed files with 8 additions and 0 deletions

View File

@ -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

View File

@ -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)
{