[llvm] [AMDGPU][VOPD] Limit VOPDPairing from reaching over load dependencies (PR #201930)
Joe Nash via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 12 09:08:27 PDT 2026
================
@@ -309,6 +339,38 @@ struct VOPDPairingMutation : ScheduleDAGMutation {
if (!hasLessThanNumFused(*JSUI, 2) ||
!shouldScheduleAdjacent(TII, ST, IMI, *JMI))
continue;
+
+ bool LoadsMayOverlap = !ILoadSuccs.empty() && [&] {
----------------
Sisyph wrote:
Please extract the lambda into a named function.
https://github.com/llvm/llvm-project/pull/201930
More information about the llvm-commits
mailing list