aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/RegisterScavenging.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-04-26 19:00:32 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-04-26 19:00:32 +0000
commitfaa510726f4b40aa4495e60e4d341c6467e3fb01 (patch)
treed0a36cbcc5fdad6cb19ee21bef4c126ece184dad /lib/CodeGen/RegisterScavenging.cpp
parent6bc6333a1059b0ee9b3b7c2685f4daf370ae67bd (diff)
downloadexternal_llvm-faa510726f4b40aa4495e60e4d341c6467e3fb01.zip
external_llvm-faa510726f4b40aa4495e60e4d341c6467e3fb01.tar.gz
external_llvm-faa510726f4b40aa4495e60e4d341c6467e3fb01.tar.bz2
Rename findRegisterUseOperand to findRegisterUseOperandIdx to avoid confusion.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36483 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegisterScavenging.cpp')
-rw-r--r--lib/CodeGen/RegisterScavenging.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/RegisterScavenging.cpp b/lib/CodeGen/RegisterScavenging.cpp
index 13a3619..93c63bf 100644
--- a/lib/CodeGen/RegisterScavenging.cpp
+++ b/lib/CodeGen/RegisterScavenging.cpp
@@ -235,7 +235,7 @@ static unsigned calcDistanceToUse(MachineBasicBlock *MBB,
I = next(I);
while (I != MBB->end()) {
Dist++;
- if (I->findRegisterUseOperand(Reg) != -1)
+ if (I->findRegisterUseOperandIdx(Reg) != -1)
return Dist;
I = next(I);
}