[llvm] [LiveIntervals] Ignore artificial regs when adding kill flags (PR #116963)

Sander de Smalen via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 4 08:48:06 PST 2024


================
@@ -659,3 +659,11 @@ bool MachineRegisterInfo::isReservedRegUnit(unsigned Unit) const {
   }
   return false;
 }
+
+bool MachineRegisterInfo::isArtificialRegUnit(unsigned Unit) const {
----------------
sdesmalen-arm wrote:

I moved it there because there was already a `isReservedRegUnit`, which I guess also shouldn't live there?
I'll move the function to TRI instead.

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


More information about the llvm-commits mailing list