[llvm-commits] CVS: llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h
Evan Cheng
evan.cheng at apple.com
Thu May 11 23:06:48 PDT 2006
Changes in directory llvm/include/llvm/CodeGen:
LiveIntervalAnalysis.h updated: 1.52 -> 1.53
---
Log message:
Backing out fix for PR770: http://llvm.cs.uiuc.edu/PR770 . Need to re-apply it after live range splitting is possible
---
Diffs of the changes: (+4 -5)
LiveIntervalAnalysis.h | 9 ++++-----
1 files changed, 4 insertions(+), 5 deletions(-)
Index: llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h
diff -u llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h:1.52 llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h:1.53
--- llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h:1.52 Tue May 9 01:37:48 2006
+++ llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h Fri May 12 01:06:34 2006
@@ -167,11 +167,10 @@
unsigned SrcReg, unsigned DestReg,
bool isLiveIn = false);
- /// Return true if the two specified registers belong to the same or
- /// compatible register classes. The registers may be either phys or
- /// virt regs.
- bool compatibleRegisterClasses(unsigned RegA, unsigned RegB,
- bool &Swap) const;
+ /// Return true if the two specified registers belong to different
+ /// register classes. The registers may be either phys or virt regs.
+ bool differingRegisterClasses(unsigned RegA, unsigned RegB) const;
+
bool AdjustIfAllOverlappingRangesAreCopiesFrom(LiveInterval &IntA,
LiveInterval &IntB,
More information about the llvm-commits
mailing list