[llvm] [CodeGen] Use *Set::insert_range (NFC) (PR #132651)

Jakub Kuderski via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 23 18:54:26 PDT 2025


================
@@ -1943,16 +1943,13 @@ bool IfConverter::IfConvertDiamondCommon(
         } else if (!RedefsByFalse.count(Reg)) {
           // These are defined before ctrl flow reach the 'false' instructions.
           // They cannot be modified by the 'true' instructions.
-          for (MCPhysReg SubReg : TRI->subregs_inclusive(Reg))
-            ExtUses.insert(SubReg);
+          ExtUses.insert_range(TRI->subregs_inclusive(Reg));
         }
       }
 
       for (MCRegister Reg : Defs) {
-        if (!ExtUses.count(Reg)) {
-          for (MCPhysReg SubReg : TRI->subregs_inclusive(Reg))
-            RedefsByFalse.insert(SubReg);
-        }
+        if (!ExtUses.count(Reg))
----------------
kuhar wrote:

nit: can we switch to `.contains`?

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


More information about the llvm-commits mailing list