Removed clobbered register declaration in an attempt to get this to

* app/composite/gimp-composite-sse2.c (gimp_composite_swap_rgba8_rgba8_rgba8_sse2):
  Removed clobbered register declaration in an attempt to get this
  to compile with gcc 3.2.3
This commit is contained in:
Helvetix Victorinox
2003-09-14 16:37:31 +00:00
parent 30f23dfc75
commit e0a4244985
2 changed files with 209 additions and 208 deletions

View File

@ -1,3 +1,9 @@
2003-09-14 Helvetix Victorinox <helvetix@gimp.org>
* app/composite/gimp-composite-sse2.c (gimp_composite_swap_rgba8_rgba8_rgba8_sse2):
Removed clobbered register declaration in an attempt to get this
to compile with gcc 3.2.3
2003-09-13 Sven Neumann <sven@gimp.org> 2003-09-13 Sven Neumann <sven@gimp.org>
* app/gui/vectors-commands.c (vectors_export_ok_callback): no need * app/gui/vectors-commands.c (vectors_export_ok_callback): no need

View File

@ -288,11 +288,6 @@ xxxgimp_composite_multiply_rgba8_rgba8_rgba8_sse2 (GimpCompositeContext *_op)
{ {
} }
static void
sse2_op_overlay(void)
{
}
void void
xxxgimp_composite_overlay_rgba8_rgba8_rgba8_sse2 (GimpCompositeContext *_op) xxxgimp_composite_overlay_rgba8_rgba8_rgba8_sse2 (GimpCompositeContext *_op)
{ {
@ -422,7 +417,7 @@ gimp_composite_swap_rgba8_rgba8_rgba8_sse2 (GimpCompositeContext *_op)
"m" (op.A[1]), "m" (op.B[1]), "m" (op.A[1]), "m" (op.B[1]),
"m" (op.A[2]), "m" (op.B[2]), "m" (op.A[2]), "m" (op.B[2]),
"m" (op.A[3]), "m" (op.B[3]) "m" (op.A[3]), "m" (op.B[3])
: "%xmm0", "%xmm1", "%xmm2", "%xmm3", "%xmm4", "%xmm5", "%xmm6", "%xmm7"); );
op.A += 64; op.A += 64;
op.B += 64; op.B += 64;
} }