SVGA refdriver: compile fix for gcc strict aliasing

Newer versions of GCC have additional strict alias checking,
and so the refdriver's IRQ handler would fail to compile.
Work around this problem (and avoid unwanted compiler
optimizations to boot) by using memcpy instead of struct
assignment.
This commit is contained in:
Micah Dowty 2009-07-01 21:02:40 +00:00
parent adf2dcf69d
commit 15fd4340d6

View file

@ -1397,7 +1397,7 @@ SVGA_WaitForIRQ(void)
void
SVGAInterruptHandler(int vector) // IN (unused)
{
volatile IntrContext *context = Intr_GetContext(vector);
IntrContext *context = Intr_GetContext(vector);
/*
* The SVGA_IRQSTATUS_PORT is a separate I/O port, not a register.
@ -1421,8 +1421,8 @@ SVGAInterruptHandler(int vector) // IN (unused)
Atomic_Or(gSVGA.irq.pending, irqFlags);
if (gSVGA.irq.switchContext) {
gSVGA.irq.oldContext = *context;
*context = gSVGA.irq.newContext;
memcpy((void*) &gSVGA.irq.oldContext, context, sizeof *context);
memcpy(context, (void*) &gSVGA.irq.newContext, sizeof *context);
gSVGA.irq.switchContext = FALSE;
}
}