While inside the ISR, interrupts are disabled (the GIE bit is cleared by hardware).
So it will wait until the current interrupt source has been serviced before handling the next one.
Unless you are using low priority interrupts, which can be interrupted by high priority interrupts.

If you are using ON INTERRUPT, the question would be irrelevant.