From 94cb2bf4e78ed5d57b797c38dbc4c404f2f3d05b Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 26 Jan 2009 20:27:11 +0000 Subject: [PATCH] Fix the name of an argument. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63037 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/LiveStackAnalysis.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/CodeGen/LiveStackAnalysis.h b/include/llvm/CodeGen/LiveStackAnalysis.h index 6b5235a5d1d..7cb4151e870 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; } -- 2.34.1