[llvm] [AMDGPU] Fold multiple aligned v_mov_b32 to v_mov_b64 on gfx942 (PR #138843)

Janek van Oirschot via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 11 06:53:14 PDT 2025


================
@@ -2760,9 +2868,11 @@ bool SIFoldOperandsImpl::run(MachineFunction &MF) {
         continue;
       }
 
-      if (MI.isRegSequence() && tryFoldRegSequence(MI)) {
-        Changed = true;
-        continue;
+      if (MI.isRegSequence()) {
----------------
JanekvO wrote:

I believe I'm adhering to the coding style; however, if I'm not up-to-date with it or if there's an insistence on removing the braces, I will. Do let me know.

https://github.com/llvm/llvm-project/pull/138843


More information about the llvm-commits mailing list