From: Dan Gohman Date: Mon, 26 Jan 2009 20:27:11 +0000 (+0000) Subject: Fix the name of an argument. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=94cb2bf4e78ed5d57b797c38dbc4c404f2f3d05b;p=oota-llvm.git Fix the name of an argument. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63037 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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; }