diff options
author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2003-12-18 08:56:11 +0000 |
---|---|---|
committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2003-12-18 08:56:11 +0000 |
commit | 485ec3c21efcb6388911f654a187c49ad04e86e6 (patch) | |
tree | 2c2888d6e4b1b602994c6e5c6a5ca703cc06845f /include | |
parent | 43f692f90f6b27304570e1b1807542dff4b8e847 (diff) | |
download | external_llvm-485ec3c21efcb6388911f654a187c49ad04e86e6.zip external_llvm-485ec3c21efcb6388911f654a187c49ad04e86e6.tar.gz external_llvm-485ec3c21efcb6388911f654a187c49ad04e86e6.tar.bz2 |
Rename LiveIntervals::expired() to LiveIntervals::expiredAt().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10511 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/LiveIntervalAnalysis.h | 2 | ||||
-rw-r--r-- | include/llvm/CodeGen/LiveIntervals.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/LiveIntervalAnalysis.h b/include/llvm/CodeGen/LiveIntervalAnalysis.h index 54b5ca3..1257e15 100644 --- a/include/llvm/CodeGen/LiveIntervalAnalysis.h +++ b/include/llvm/CodeGen/LiveIntervalAnalysis.h @@ -55,7 +55,7 @@ namespace llvm { return ranges.back().second; } - bool expired(unsigned index) const { + bool expiredAt(unsigned index) const { return end() <= index; } diff --git a/include/llvm/CodeGen/LiveIntervals.h b/include/llvm/CodeGen/LiveIntervals.h index 54b5ca3..1257e15 100644 --- a/include/llvm/CodeGen/LiveIntervals.h +++ b/include/llvm/CodeGen/LiveIntervals.h @@ -55,7 +55,7 @@ namespace llvm { return ranges.back().second; } - bool expired(unsigned index) const { + bool expiredAt(unsigned index) const { return end() <= index; } |