From 94326677f033d604b790d3efdc66237bc582c126 Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Fri, 26 Jun 2009 00:15:27 +0000 Subject: [PATCH] Privatize a static variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74234 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Alpha/AlphaRegisterInfo.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/Target/Alpha/AlphaRegisterInfo.h b/lib/Target/Alpha/AlphaRegisterInfo.h index c4f5f7b421d..c9ae4b7fc33 100644 --- a/lib/Target/Alpha/AlphaRegisterInfo.h +++ b/lib/Target/Alpha/AlphaRegisterInfo.h @@ -60,6 +60,9 @@ struct AlphaRegisterInfo : public AlphaGenRegisterInfo { int getDwarfRegNum(unsigned RegNum, bool isEH) const; static std::string getPrettyName(unsigned reg); + +private: + int curgpdist; }; } // end namespace llvm