Fair warning: I'm touching code I'm not familiar with. My approach might be completely wrong here.
As far as I can tell, the line in question has no effect on runs with realignment enabled; the alignment of the spill slots is already handled within the MachineFrameInfo::CreateFixedSpillSlot.
With realignment disabled (via no-realign-stack), this appears to bypass the checking in MFI which prevents the stack alignment from being increased for CSRs. What I'm really not clear on is why this doesn't trip the assert in ensureMaxAlignment. Help?
(To exercise this code, you have to disable fp elimination. Anyone know why we unconditional realign with a FP and ignore it otherwise? I don't see any profitability decision being made...)