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:
@ -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
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user