You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[RISCV] Use LiveIntervals::extendToIndices to extend AVL in insertVSETVLI
In llvm#96200 we handled extending AVL LiveIntervals across basic blocks, which fixed a crash in a test case in 133ab9a.
This was done by manually adding a single segment to the LiveInterval to extend it from AVL def -> inserted vsetvli, but in hindsight this was too simple and fails to handle cases where the vsetlvi is located before the AVL def.
This patch fixes this by using LiveIntervals::extendToIndices instead which can handle these cases.
(The crash that this fixes is separate from the crash in llvm#97264)
0 commit comments