diff options
author | Dan Gohman <gohman@apple.com> | 2009-01-26 20:27:11 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-01-26 20:27:11 +0000 |
commit | bda1a1523f944f6cba7f9b9dbe62af05fe452b18 (patch) | |
tree | eb39e0d0e226d236b743981ef4223fa3663e326e | |
parent | bb1518f1f7125bf4bfe2235f8700e01d11d8c0cb (diff) | |
download | external_llvm-bda1a1523f944f6cba7f9b9dbe62af05fe452b18.zip external_llvm-bda1a1523f944f6cba7f9b9dbe62af05fe452b18.tar.gz external_llvm-bda1a1523f944f6cba7f9b9dbe62af05fe452b18.tar.bz2 |
Fix the name of an argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63037 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/LiveStackAnalysis.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/LiveStackAnalysis.h b/include/llvm/CodeGen/LiveStackAnalysis.h index 6b5235a..7cb4151 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; } |