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 | 0b46005b1916d8bee4cad98c13724d728ff8e833 (patch) | |
| tree | a3067c1f3113e71faee22a03e0c37766ec97e16b /llvm | |
| parent | 357b57d7492813fcad9fbaa7fbd0253c3b3dfa81 (diff) | |
| download | bcm5719-llvm-0b46005b1916d8bee4cad98c13724d728ff8e833.tar.gz bcm5719-llvm-0b46005b1916d8bee4cad98c13724d728ff8e833.zip | |
Fix the name of an argument.
llvm-svn: 63037
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/CodeGen/LiveStackAnalysis.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/CodeGen/LiveStackAnalysis.h b/llvm/include/llvm/CodeGen/LiveStackAnalysis.h index 6b5235a5d1d..7cb4151e870 100644 --- a/llvm/include/llvm/CodeGen/LiveStackAnalysis.h +++ b/llvm/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; } |

