mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
Kernel: Move handle_interrupt out-of-line in PCIIRQHandler
Upgrade to GCC 13.1.0 triggered an UBSAN in PCIIRQHandler. Moving the handle_interrupt() function out-of-line fixes this issue.
This commit is contained in:
committed by
Andrew Kaster
parent
ff70418ffc
commit
d14c2a3583
@@ -63,4 +63,9 @@ void PCIIRQHandler::disable_irq()
|
||||
device.disable_interrupt(interrupt_number());
|
||||
}
|
||||
|
||||
bool PCIIRQHandler::handle_interrupt(RegisterState const& regs)
|
||||
{
|
||||
return handle_irq(regs);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user