summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/LiveStackAnalysis.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-01-26 20:27:11 +0000
committerDan Gohman <gohman@apple.com>2009-01-26 20:27:11 +0000
commit94cb2bf4e78ed5d57b797c38dbc4c404f2f3d05b (patch)
treeeb39e0d0e226d236b743981ef4223fa3663e326e /include/llvm/CodeGen/LiveStackAnalysis.h
parent36c826ad958f74e1078cbe2ecfd07ae0a7170543 (diff)
downloadllvm-94cb2bf4e78ed5d57b797c38dbc4c404f2f3d05b.tar.gz
llvm-94cb2bf4e78ed5d57b797c38dbc4c404f2f3d05b.tar.bz2
llvm-94cb2bf4e78ed5d57b797c38dbc4c404f2f3d05b.tar.xz
Fix the name of an argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63037 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/LiveStackAnalysis.h')
-rw-r--r--include/llvm/CodeGen/LiveStackAnalysis.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/LiveStackAnalysis.h b/include/llvm/CodeGen/LiveStackAnalysis.h
index 6b5235a5d1..7cb4151e87 100644
--- a/include/llvm/CodeGen/LiveStackAnalysis.h
+++ b/include/llvm/CodeGen/LiveStackAnalysis.h
@@ -64,8 +64,8 @@ namespace llvm {
return I->second;
}
- bool hasInterval(unsigned reg) const {
- return s2iMap.count(reg);
+ bool hasInterval(unsigned Slot) const {
+ return s2iMap.count(Slot);
}
BumpPtrAllocator& getVNInfoAllocator() { return VNInfoAllocator; }