From a955eabc7b080744e6af25a2c803aeafbf1940a4 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Wed, 21 Jan 2015 19:02:26 +0000 Subject: [PATCH] LiveIntervalAnalysis: document removePhysRegDefAt() function. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226689 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/LiveIntervalAnalysis.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/llvm/CodeGen/LiveIntervalAnalysis.h b/include/llvm/CodeGen/LiveIntervalAnalysis.h index d9708703697..098262aa828 100644 --- a/include/llvm/CodeGen/LiveIntervalAnalysis.h +++ b/include/llvm/CodeGen/LiveIntervalAnalysis.h @@ -393,6 +393,9 @@ namespace llvm { return RegUnitRanges[Unit]; } + /// Remove value numbers and related live segments starting at position + /// @p Pos that are part of any liverange of physical register @p Reg or one + /// of its subregisters. void removePhysRegDefAt(unsigned Reg, SlotIndex Pos); private: -- 2.34.1