mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 01:34:32 +00:00
LiveInterval::removeKills and isKill don't need 'this' and
can be static member functions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61278 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e19c6362d2
commit
fce4028718
@ -244,7 +244,7 @@ namespace llvm {
|
||||
|
||||
/// removeKills - Remove all the kills in specified range
|
||||
/// [Start, End] of the specified val#.
|
||||
void removeKills(VNInfo *VNI, unsigned Start, unsigned End) {
|
||||
static void removeKills(VNInfo *VNI, unsigned Start, unsigned End) {
|
||||
SmallVector<unsigned, 4> &kills = VNI->kills;
|
||||
SmallVector<unsigned, 4>::iterator
|
||||
I = std::lower_bound(kills.begin(), kills.end(), Start);
|
||||
@ -255,7 +255,7 @@ namespace llvm {
|
||||
|
||||
/// isKill - Return true if the specified index is a kill of the
|
||||
/// specified val#.
|
||||
bool isKill(const VNInfo *VNI, unsigned KillIdx) const {
|
||||
static bool isKill(const VNInfo *VNI, unsigned KillIdx) {
|
||||
const SmallVector<unsigned, 4> &kills = VNI->kills;
|
||||
SmallVector<unsigned, 4>::const_iterator
|
||||
I = std::lower_bound(kills.begin(), kills.end(), KillIdx);
|
||||
|
Loading…
Reference in New Issue
Block a user