From c82a034580870e4801d645dae530b1c9dfac3e8e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 21 Oct 2005 15:49:28 +0000 Subject: [PATCH] add missing prototype llvm-svn: 23867 --- llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h b/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h index 1356755fb2b3..a313c4b9f42b 100644 --- a/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h +++ b/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h @@ -171,6 +171,10 @@ namespace llvm { /// register classes. The registers may be either phys or virt regs. bool differingRegisterClasses(unsigned RegA, unsigned RegB) const; + bool AdjustIfAllOverlappingRangesAreCopiesFrom(LiveInterval &IntA, + LiveInterval &IntB, + unsigned CopyIdx); + bool overlapsAliases(const LiveInterval *lhs, const LiveInterval *rhs) const;